Hey I want to create a database with an AUTO_INCREMENT column. But I don\'t know how to parse the value in the method insert. I just don\'t know what to parse to an AUTO_INC
You don't have to specifically write AUTO_INCREMENT as in MYSQL.
Just have to define the primary key Field as _id INTEGER PRIMARY KEY.
It will not work, if have define the Primary key field with INT when creating the table. It Should be INTEGER and thats it.
When you don't pass any value for the primary key filed when inserting records, it will automatically increase the value to be a unique value( same way MYSQL AUTO_INCREMENT works )