Well, I've figured out how to put data into a sqlite database. I can extract data from the command line, however, for the life of me, I just can't find any good documentation on using Select.
What I'm trying to do: SELECT name, size FROM filelist where uid=<given value> This works from the command line: sqlite3 data.dbl "SELECT name, uid from filelist where UID=\"1000\"" I'd like to pop this into an array, where I could manipulate it, where each element of the array would contain name,size. Are there any good web pages on using the SELECT function? I took a look at: http://souptonuts.sourceforge.net/readme_sqlite_tutorial.html But it kind of lost me. Scott Mohnkern