我通过在c#.net中导出我的SQLite数据库生成了一个XML文件。生成的XML就像 -
<root>
<name1>
<names>
<id>5</id>
<from>Germany</from>
<to>France</to>
<through>
<via>
<id>7</id>
<routeNo>5<routeNo>
<route>Vienna<route>
</via>
</through>
</names>
<names>
<id>10</id>
<from>US</from>
<to>Canada</to>
<through>
<via>
<id>8</id>
<routeNo>10<routeNo>
<route>Mexico<route>
</via>
</through>
</names>
</name1>
</root>
然后我将此文件转换为平面XML数据,如 -
<names id="5" from="Germany" to="France">
<through id="9" routeNo="5" route="Vienna" />
<through id="10" routeNo="5" route="russia" />
</names>
我已将此XML文件导入SQLite数据库。我使用以下代码导入 -
SQLiteConnection sqlite_conn = new SQLiteConnection("Data Source=SGLight_empty.fmeda;Version=3;New=True;Compress=True;");
NDbUnit.Core.INDbUnitTest sqliteDatabase = new NDbUnit.Core.SqlLite.SqlLiteUnitTest(sqlite_conn);
string xsdFilename = "myXSD.xsd";
string xmlFilename = "myXML.xml";
sqliteDatabase.ReadXmlSchema(xsdFilename);
sqliteDatabase.ReadXml(xmlFilename);
sqliteDatabase.PerformDbOperation(NDbUnit.Core.DbOperationFlag.CleanInsertIdentity);
现在,问题是它适用于普通的XML文件,我无法导入从普通XML转换的扁平XML文件。任何人都可以帮我修改它,以便我也可以从平面XML导入数据吗?
答案 0 :(得分:0)
需要考虑的一个问题是SQLite是否能够识别并将XML与生成完整XML的数据库模式匹配,即使对于展平的XML使用正确的XSD也是如此。为什么你需要首先展平XML?
话虽这么说,Windows SDK附带了一个xsd工具,可以从任意XML文件中推断出XSD。我将“flat”xml复制到名为temp.xml的文件中,运行xsd temp.xml
,并收到此XSD定义:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="names">
<xs:complexType>
<xs:sequence>
<xs:element name="through" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="id" type="xs:string" />
<xs:attribute name="routeNo" type="xs:string" />
<xs:attribute name="route" type="xs:string" />
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="xs:string" />
<xs:attribute name="from" type="xs:string" />
<xs:attribute name="to" type="xs:string" />
</xs:complexType>
</xs:element>
<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="names" />
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>