Showing rowids with records in SQLite
How can I show rowids with records in SQLite while it is displayed
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pravin MorePosted Nov 6, 2011, 11:34 PM
you can show rowid by below query........
SELECT rowid,* FROM Tablename;
Note:-
but its ok id you just want to show it.....
but if you want to perform somthing on it then it may create problem....
i mean to say if you are going to show records in combobox on the basis of rowID then it may change when record will deleted.....
Thanks,i hope it will help you.
Pravin.