I'm just getting started with SQLite.
My tutorial specifies creating a test file (http://sql.learncodethehardway.org/book/ex0.html).
I've done sqlite> test.db I don't know how to check that this has created the file.
I also tried another tutorial (https://www.youtube.com/watch?feature=player_detailpage&v=QjICgmk31js#t=430) and got a syntax error on the second line:
sqlite> test.db ...> create table employees (id integer primary key, name text);
"Error: near "test"; syntax error"
Very frustrating, thank you for any help on this stumbling block.
sqlite3tool from there. - CL.