Announcement

Collapse
No announcement yet.

Excel Daten in xml Datei speichern bzw. exportieren

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Excel Daten in xml Datei speichern bzw. exportieren

    Hallo!

    Ich hab folgendes Problem: Ich soll eine vorhandene Adress-Datenbank die als excel Tabelle oder access DB vorliegt in eine xml Datei nach vorgegebenem xml Schema exportieren.

    Kann mir jemand sagen, wie dies realisierbar ist, bzw. wer im Auftrag so eine Programmierung durchführen kann?

    Die Tabelle:
    id firma straße plz ort

    123 Huber GmbH Holzstr. 3 51234 Musterstadt
    124 Schmidt KG Bergstr. 10 23365 Talberg
    125 Haller e.K. Waldstraße 123 99922 Adelburg

    Total: 3

    Hier das Schema:

    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <root>
    - <total> <![CDATA[ 3 ]]>
    </total>
    - <result>
    - <job>
    - <id> <![CDATA[ 123 ]]>
    </id>
    - <firma> <![CDATA[ Huber GmbH ]]>
    </firma>
    - <strasse> <![CDATA[ Holzstr. 3 ]]>
    </strasse>
    - <plz> <![CDATA[ 51234 ]]>
    </plz>
    - <ort> <![CDATA[ Musterstadt ]]>
    </ort>
    </job>
    - <job>
    - <id> <![CDATA[ 124 ]]>
    </id>
    - <firma> <![CDATA[ Schmidt KG ]]>
    </firma>
    - <strasse> <![CDATA[ Bergstr. 10 ]]>
    </strasse>
    - <plz> <![CDATA[ 23365 ]]>
    </plz>
    - <ort> <![CDATA[ Talberg ]]>
    </ort>
    </job>
    - <job>
    - <id> <![CDATA[ 125 ]]>
    </id>
    - <firma> <![CDATA[ Haller e.K. ]]>
    </firma>
    - <strasse> <![CDATA[ Waldstraße 123 ]]>
    </strasse>
    - <plz> <![CDATA[ 99922 ]]>
    </plz>
    - <ort> <![CDATA[ Adelburg ]]>
    </ort>
    </job>
    </result>
    </root>


    Für jeden Hinweis im voraus besten Dank!

    Bernhard
Working...
X