im new on Android. I have some trouble with the insert statement in the database, when im running the application the values have not been inserted. Please someone can help.
You can use ContentValues to insert into your database.
ContentValues
SQLiteDatabase db = this.getWritableDatabase(); ContentValues values = new ContentValues(); values.put(COL_NAME, VALUE); values.put(COL_NAME, VALUE); // Inserting Row db.insert(YOUR_TABLE, null, values);