创建 SQLXMLBulkLoad 模式的工具?
SQLXMLBulkLoad 需要使用各种属性(例如sql:datatype)和一些附加元素来注释模式。是否有任何工具可以使用这些信息来丰富模式,至少适用于某些基本场景?
SQLXMLBulkLoad requires schemas to be annotated with various attributes (e.g. sql:datatype) and some additional elements. Is there any tool that can enrich a schema with this information for at least some basic scenarios?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我问过类似的问题并做了一些研究。市场上似乎没有创建 SQLXMLBulkLoad 模式的工具。我正在尝试自己写一篇。由于架构是一个XML文件,我们可以使用LINQ to XML来插入注释信息。
I have asked a similar question and have done some researches. It seems that there is not tool to create SQLXMLBulkLoad schema in the market. I am trying to write one by myself. Since the schema is a XML file, we can use LINQ to XML to insert the annotation information.