xml to mysql

hi all,

my pseudo speaks for itself :slight_smile: I've search on many RoR websites but could not find any easy/ understable/best way to record the following xml file :

<?xml version="1.0" ?> <!--My first XML document -->    <BankAccount>         <Number>1234</Number>         <Name>Darshan Singh</Name>         <Type>Checking</Type>         <OpenDate>11/04/1974</OpenDate>         <Balance>25382.20</Balance>    </BankAccount>

...into a mysql db (table = Accounts / columns = id, number, name, type, opendate, balance)

thanks a lot in advance for your help

Have you looked at ActiveRecord? Or more specifically ActiveRecord::XML. Hope this helps.