How to import data into SimpleDB with Bolso
Importing data into SimpleDB using Bolso is simple. Bolso can import data in XML format as it is exported by phpMyAdmin. The data you want to import can come from other sources other than PHPMyAdmin as long as it has the same format. An example of the XML exported by phpMyAdmin looks like this:
<root>
<row>
<id>1</id>
<columnA>valueA</columnA>
<columnB>valueB</columnB>
<columnC>valueC</columnC>
</row>
<row>
<id>2</id>
<columnA>valueA</columnA>
<columnB>valueB</columnB>
<columnC>valueC</columnC>
</row>
</root>
If your XML has a format like the example above, Bolso can import it regardless of the source of the XML.