Hello all,
Recently i started to work on some project that contain database (access mdb) connected with ADO. But in that db some Tables are updatable from XML, every morning i need to replace data in that tables that have off course same structure. The problem arises when i need to fill Recordset from XML using DOM Parser, it take ages, tables are huge (around 30-60k records).
Is there some other way importing xml to recordset? I read that ADO will accept XML if structured differently (with some namespaces) but i am not familiar how (if possible) convert current xml with some kind of transform (XSLT) and will this transformation need same as directly importing with DOM.
XML look like this
<?xml version="1.0" standalone="yes"?>
<SZR xmlns="http://tempuri.org/SZR.xsd">
<sDrz>
<ID>0</ID>
<Naz>Data1</Naz>
</sDrz>
<sDrz>
<ID>01</ID>
<Naz>Data2</Naz>
</sDrz>
</SZR>
Thanks
Recently i started to work on some project that contain database (access mdb) connected with ADO. But in that db some Tables are updatable from XML, every morning i need to replace data in that tables that have off course same structure. The problem arises when i need to fill Recordset from XML using DOM Parser, it take ages, tables are huge (around 30-60k records).
Is there some other way importing xml to recordset? I read that ADO will accept XML if structured differently (with some namespaces) but i am not familiar how (if possible) convert current xml with some kind of transform (XSLT) and will this transformation need same as directly importing with DOM.
XML look like this
<?xml version="1.0" standalone="yes"?>
<SZR xmlns="http://tempuri.org/SZR.xsd">
<sDrz>
<ID>0</ID>
<Naz>Data1</Naz>
</sDrz>
<sDrz>
<ID>01</ID>
<Naz>Data2</Naz>
</sDrz>
</SZR>
Thanks