Importing an XML document into a Rails database? -
i've been reading through tutorial after tutorial, nothing seems working out me. goal take xml document elements , attributes , insert data in database. each element/attribute column in database, , each entry row. here made-up xml doc i've been working with: <?xml version="1.0"?> <library> <name><![cdata[favorite books]]></name> <book isbn="11342343"> <title>to kill mockingbird</title> <description><![cdata[description#1]]></description> <author>harper lee</author> </book> <book isbn="989894781234"> <title>catcher in rye</title> <description><![cdata[this extremely intense description.]]></description> <author>j. d. salinger</author> </book> <book isbn="123456789"> <title>murphy's gambit</title> <description><![cdata[daughter finds dad!]]></description> <auth...