Re: Re[2]: [sqlite] how can I import CSV file into SQLite quickly

2005-12-07 Thread Aaron Peterson
On 12/7/05, Teg <[EMAIL PROTECTED]> wrote: > Hello All, > > Wouldn't it make sense to write a program that reads it in, one line > at a time, splits and inserts the data into the proper tables? Even > creating the table on the fly? That's what I'd do, a little command > line utility. One could pro

Re[2]: [sqlite] how can I import CSV file into SQLite quickly

2005-12-06 Thread Teg
Hello All, Wouldn't it make sense to write a program that reads it in, one line at a time, splits and inserts the data into the proper tables? Even creating the table on the fly? That's what I'd do, a little command line utility. It's basically the "convert to SQL" technique you suggest where the