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..
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.