tags:

views:

26

answers:

1

hi i have 1 update query in db and it is by use of sqlite

int success = SQLITE_STEP(insert_statement);

i get success value 21

what s meaningof it?

+1  A: 

According to the description of the return values as seen in http://www.sqlite.org/c_interface.html it mean's "/* Library used incorrectly */"

Alon Amir