是否有任何方法可以使用XML模式来创建表。我也想知道我是否可以将这种方法用于动态表格
更新
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.Lahiruzz.com">
<xs:element name="note">
<xs:complexType>
<xs:sequence>
<xs:element name="to" type="xs:string"/>
<xs:element name="from" type="xs:string"/>
<xs:element name="heading" type="xs:string"/>
<xs:element name="body" type="xs:string"/>
</xs:sequence>
</xs:complexType>
答案 0 :(得分:1)
看看: generateDS -- Generate Data Structures from XML Schema 它看起来像你要求的那样
答案 1 :(得分:0)
看起来这是一个与MSSQL和.NET相关的问题
在Google中找到了这个
希望它有所帮助。
ADD:
还为python发现了这个http://www.rexx.com/~dkuhlman/generateDS.html