Map<Integer, String> values = buildValues(10);
proc.run(conn, keyname, values);
}
private void scanRecord() throws SQLException {
ScanRecord proc = this.getProcedure(ScanRecord.class);
assert (proc != null);
int keyname = readRecord.nextInt();
int count = randScan.nextInt();
proc.run(conn, keyname, count, new ArrayList<Map<Integer, String>>());
}