申し訳ありませんが、私が知る限り、Java にはそのようなテーブル オブジェクトはありません。 JDBC で挿入する場合、preparedStatements とバッチ実行を検討する必要があります。
java.sql.connection connection = //driver, url, database, credentials ... try { PreparedStatement ps = connection.prepareStatement("insert into tbl values (?)"); ps.setInt(1, your 1st int); ps.addBatch(); ps.setInt(1, your 2nd int); ps.addBatch(); ps.setInt(1, your 3rd int); ps.addBatch(); ps.executeBatch(); } catch (SQLException e) { // err handling goes here } finally { // close your resources }
プレ>よろしくS