How to get the next autoincrement value of the field named Id in Receipt table in sqlite?
in sqlce i do the following and it works
SELECT AUTOINC_NEXT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'Receipt' AND COLUMN_NAME = 'Id'
what is the parallel way in sqlite?