- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for setMaxRows (0.07 sec)
-
src/main/java/org/codelibs/core/sql/StatementUtil.java
* @param maxRows * 最大の行数 * @see Statement#setMaxRows(int) */ public static void setMaxRows(final Statement statement, final int maxRows) { assertArgumentNotNull("statement", statement); try { statement.setMaxRows(maxRows); } catch (final SQLException ex) { throw new SQLRuntimeException(ex); } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.2K bytes - Viewed (0)