Im getting an error "not an error" on iPhone SDK, I spent a whole day trying to resolve it. SQLite version 3.4.0
sqlite3_step(compiledStatement)
The table I'm using in the query has only one row. It returns 100..?
sqlite3_errmsg( database )
This line gives me the above error.
I've created a database and tables in it with terminal commands, and placed in the application resources folder as well as in the documents path, which is done dynamically.
while(sqlite3_step(compiledStatement) == SQLITE_ROW)
This loops never executes in my code, inside which i get all the values.
I think this info is enough, let me know. Anyone know where i'm having the problems..?
thanks in advance