public void saveRecords(String info, int otherinfo, int greatinfo){
SQLiteDatabase db = this.getWritableDatabase();
ContentValues values = new ContentValues();
values.put(STRING_COLUMNA, info);
values.put(STRING_COLUMNB, otherinfo);
values.put(STRING_COLUMNC, greatinfo);
db.insert(TABLE_NAME, null, values);
db.close();
}
Good luck
source
share