2008/7/22 Milton Centeno <[EMAIL PROTECTED]>:
> Hi,
>
> I'm new to sqlite. The command "sqlite3 test.db" and "sqlite3 ex1" as listed
> in the getting started guide on the website do not appear to work for me.
> What are the commands to simply create a database in sqlite and how to exit
> when in the "---->" prompt? Thank you.
>
> respectfully,
> Milton
> _______________________________________________

Hi,

----> prompt indicates that the SQL so far supplied is incomplete.
SQLite is waiting for more input to complete the SQL statement.
This can be caused by omitting the semi-colon, or having unmatched
quote characters in the string so that the semi-colon is being
interpreted as part of a string, and not the terminator of the
statement.

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

Reply via email to