db.beginTransaction(); for (int row = 0; row < getNumInserts(); row++) { stmt.clearBindings(); stmt.bindString(2, getEmployeeName(row)); stmt.bindLong(3, getEmployeeAge(row)); stmt.bindLong(4, getEmployeeHiredStatus(row)); stmt.executeInsert(); } db.setTransactionSuccessful(); db.endTransaction();