Hello everyone
I hope to add a row to a table in a sqlite database.
[NSString stringWithFormat:@"INSERT INTO myTable (rowid,myName ) VALUES (NULL, '%@');" , [aInfo myString]];
rowid is auto increment.
After insert the row, I hope to get the rowid that generate by sqlite automatically.
Is it possible?
welcome any comment
Thanks