> When I launch the program with the Terminal, if I write: > ./quickStart test.db "select * from personne", all occurs well, I > receives the data contained in the table "personne". But if I write > ./quickStart test "select * from personne", therefore I the extention in > the name of the data base does not put, I receives the same error as > for XCode: SQL error: No such table: personne
My guess is you now have 2 databases One called "test.db" containing the table "personne" And one called "test" containing no tables. SQlite doesn't care much about the file extension, it doesn't really have one it defaults to if you don't supply one Make sure your XCode loads "test.db" and see if that work