Dan,
I'm using the latest version downloaded last week: amalgamate 3-6-17.

Robert,
The difference between what you did and what I did was perhaps that
 I had excel make the .csv file, and maybe the excel version had something
to do with it ? 
I'll retry with the exact same steps, and let you know the result. Thanks
for your help!

I was told I should get sqlmaestro or sqlexpert but I'm trying to do
it without having to spend $100 and it sounds like that is possible.

Regards,
Kavita
----- Original Message -----
From: "Robert Citek" <robert.ci...@gmail.com>
To: "General Discussion of SQLite Database" <sqlite-users@sqlite.org>
Sent: Monday, September 7, 2009 11:08:41 AM GMT -06:00 US/Canada Central
Subject: Re: [sqlite] Importing data into SQLite

On Sun, Sep 6, 2009 at 9:32 PM, Kavita
Raghunathan<kavita.raghunat...@skyfiber.com> wrote:
> Timothy and all,
> When I try to import a .csv, I get a segmentation fault:
> 1) First I set .seperator to ,
> 2) Then I type .import <csv filename> <table name>
> 3) I see "Segmentation fault"
>
> Any ideas ?

Here's an example of how it worked for me.

$ cat data.csv
"a",1
"b",2
"c",3

$ sqlite3 sample.db .schema
CREATE TABLE data (foo text, bar int);

$ sqlite3 -separator , sample.db '.imp "data.csv" "data" '

$ sqlite3 -header -column sample.db 'select * from data ;'
foo         bar
----------  ----------
"a"         1
"b"         2
"c"         3

More details here, including caveats:

http://www.sqlite.org/cvstrac/wiki?p=ImportingFiles

Personally, I prefer to used tab-delimited files and then import by
specifying the separator as a tab:

$ sqlite3 -separator $'\t' sample.db '.imp "data.tsv" "data" '

This takes advantage of the bash shell's use of $'\t' to encode a tab.

Regards,
- Robert
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to