row[col++] = new Integer(fid);
row[col++] = new Integer(seatnum);
for (int j=0; j < 9; ++j) {
row[col++] = number(1, 1<<30);
}
reservationTbl.addRow(row);
if (reservationTbl.getRowCount() >= kReservationBatchSize) {
System.err.printf("RESERVATIONS: loading %d rows (fid %d of %d)\n",
reservationTbl.getRowCount(), fid, maxfids);
loadTable("RESERVATIONS", reservationTbl);
reservationTbl.clearRowData();