Skip to content Skip to sidebar Skip to footer

Insert Into Specific Row In Android Sqlite Database

I'm looking for a way to insert a new entry into a specific row in an sqlite database in android. The basic idea is that the database stores entries like this: id day time

Solution 1:

Short answer, no. Auto increment means you don't control the field.

Solution 2:

If you're looking to change a certain row in a table, you can use UPDATE.

INSERT INTO is for adding new rows.

Post a Comment for "Insert Into Specific Row In Android Sqlite Database"