Re: [sqlite] Importing Tab delimited data

2006-01-30 Thread Vishal Kashyap
Nemanja, I never knew this could happen. In one of my latest project I had to use sed to convert data into csv. Later this data was imported by import command. But the example stated here would reduce atleast one step in my project. Moreover I am only concerned that the data may not be tab

Re: [sqlite] Importing Tab delimited data

2006-01-29 Thread Nemanja Corlija
On 1/30/06, Clint Bailey <[EMAIL PROTECTED]> wrote: > Is it possible to import tab delimited data into sqlite in order to > start testing? You can use sqlite3 command for that. Something like this: E:\SQLite>sqlite3.exe test.db3 SQLite version 3.2.6 Enter ".help" for instructions sqlite> CREATE

[sqlite] Importing Tab delimited data

2006-01-29 Thread Clint Bailey
Is it possible to import tab delimited data into sqlite in order to start testing?