I am going to be writing an app in flash builder and I want the ability to import CSV data into an SQLite database in Adobe Air/flashbuilder.
I have never done anything like this and am not totally sure where to start.
I will want to do some manipulation of the data before I reinsert it. So really I need to know what steps (classes and functions) I need to use to parse the data from a CSV file into an array that can be manipulated in actionscript?
I use casalib for a lot of stuff, including loading. You can use the standard as3 stuff, but this makes it a lot easier. Look into CasaLoader.
You can then use some string splitting to extract the rows/columns
the sqlite stuff is surprisingly easy. Have a look at this link: http://ntt.cc/2008/07/08/sqlite-example-for-adobe-air-working-with-local-sql-databases-with-source-code.html
you can ignore the mxml stuff