Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for setQueryTimeout (0.07 seconds)

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

         * @param queryTimeout
         *            Query timeout.
         * @see Statement#setQueryTimeout(int)
         */
        public static void setQueryTimeout(final Statement statement, final int queryTimeout) {
            assertArgumentNotNull("statement", statement);
    
            try {
                statement.setQueryTimeout(queryTimeout);
            } 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