SQLite Error Code 17

One of my tables in my SQLite database returns this error code below:

sqlite returned: error code = 17, msg = prepared statement aborts at 32 [sql statement]

As far as I know, the data has been successfully inserted. Is that something I should worry about? Or is it just a false mistake? Based on this , he says:

Database schema changed

What exactly does this mean? Any suggestions?

+6
source share
2 answers

Try to insert a few more elements, it seems a false error after you entered the values ​​recognized by your database schema and stopped giving this false error.

+2
source

I get the same error. Do you drop your database and then re-populate it? This “warning” appears when I destroy my database and then reinsert about 200 rows ... but everything works fine. This is strange. The sqlite forum has thread .

+1
source

Source: https://habr.com/ru/post/918732/


All Articles