my code is exactly this in "line.sql"
CREATE TABLE haltestellen (
id integer primary key autoincrement,
name varchar(64)
);
when i open sqlite3.exe and type ".read line.sql" i get this:
quite strange..
|
my code is exactly this in "line.sql"
when i open sqlite3.exe and type ".read line.sql" i get this: quite strange.. |
|||
|
|
|
Looks like a Unicode Byte Order Mark. Check the options in your text editor to save the file without a byte order mark, or save it in a different encoding. |
|||
|
|
|
The query itself works. See this SQLFiddle example. You probably have an invisible special character at the beginning of your file. |
|||
|