vote up 1 vote down star

I'm trying to create a new SQLite database from scratch by writing the schema for my new tables (only one so far though), and the INSERT statements for that table in one file.

Then I go into sqlite3 and try to create the database as follows:

$ sqlite3 newdatabase.db
SQLite version 3.4.0
Enter ".help" for instructions
sqlite> .read ./schema.sql
SQL error near line 16: near "s": syntax error

Line 16 of my file looks something like this:

INSERT INTO table_name (field1, field2) VALUES (123, 'Hello there\'s');

So the problem there is the escape character for a single quote, but I cannot figure out why this is not working. I already tried double escaping the single quote (using \' instead of \'), but that didn't work either.

What am I doing wrong here?

flag

after submitting my question it looks like maybe you already tried this but in your question it isn't formatted correctly or something... what do you mean by (using \' instead of \') ? – Ryan Guill Mar 2 at 19:16

2 Answers

vote up 3 vote down check

I am not familiar with SQLite, but did you try doubling up the single quotes? many databases expect it that way. So it would be

...'Hello there''s');
link|flag
That works indeed. I just assumed that it would escape single quotes with a backslash. Thanks! – jpm Mar 2 at 19:17
vote up 1 vote down

I believe you'd want to escape by doubling the single quote:

INSERT INTO table_name (field1, field2) VALUES (123, 'Hello there''s');
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.