insertStmt.bindString(1, name); return insertStmt.executeInsert();
и другие:
ContentValues contentValues = new ContentValues(); contentValues.put("name", name); return db.insert(TABLE_NAME, null, contentValues);