Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for setFetchSize (0.06 seconds)

  1. src/main/java/org/codelibs/core/sql/StatementUtil.java

         * @param fetchSize
         *            Fetch size.
         * @see Statement#setFetchSize(int)
         */
        public static void setFetchSize(final Statement statement, final int fetchSize) {
            assertArgumentNotNull("statement", statement);
    
            try {
                statement.setFetchSize(fetchSize);
            } catch (final SQLException ex) {
                throw new SQLRuntimeException(ex);
            }
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 5K bytes
    - Click Count (0)
Back to Top