xquery 文件扩展名
xquery filename extensions
我刚开始学习XQuery,想不通为什么有那么多文件扩展名。我遇到了以下文件扩展名:
.xq、.xql、.xqm、.xqy 和 .xquery。
它们有什么区别?
XQuery 的文件扩展名从未被 W3C XML 查询工作组正式化。因此,每个 XQuery 处理器和 IDE 都有不同的建议。
在 BaseX 中,xq
是 main modules. The file suffix xqm
is recommended for library modules. All other suffixes that you have listed are accepted as well, though (see XQuery Extensions: Suffixes 最广泛使用和首选的文件后缀以了解更多详细信息)。
我刚开始学习XQuery,想不通为什么有那么多文件扩展名。我遇到了以下文件扩展名:
.xq、.xql、.xqm、.xqy 和 .xquery。
它们有什么区别?
XQuery 的文件扩展名从未被 W3C XML 查询工作组正式化。因此,每个 XQuery 处理器和 IDE 都有不同的建议。
在 BaseX 中,xq
是 main modules. The file suffix xqm
is recommended for library modules. All other suffixes that you have listed are accepted as well, though (see XQuery Extensions: Suffixes 最广泛使用和首选的文件后缀以了解更多详细信息)。