Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 xml 文件读取到 aleri 中的流中。我如何在 aleri 中为具有嵌套元素的 xml 创建数据模型资源管理器。
您可以使用内置数据连接器之一、使用 sp_upload/sp_convert 或 sp_playback 导入平面 XML 文件。该文件需要采用以下格式:
<StreamName column1="value" column2="value" />
(如果您使用的是数据连接器,则流名称不必匹配。)
有嵌套元素的地方就更难了。您要么需要将文件作为文本文件推入并在模型中重建它,要么需要编写适配器。在这两种情况下,您都需要考虑如何在平面表结构中表示嵌套元素。