Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for executeBatch (0.11 sec)

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

         * @return 更新した結果の行数の配列
         * @throws SQLRuntimeException
         *             {@link SQLException}が発生した場合
         */
        public static int[] executeBatch(final PreparedStatement ps) throws SQLRuntimeException {
            assertArgumentNotNull("ps", ps);
    
            try {
                return ps.executeBatch();
            } catch (final SQLException ex) {
                throw new SQLRuntimeException(ex);
            }
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                for (BuildDisplayInfo displayInfo : results.getBuilds()) {
                    addOperations(statement, executionId, displayInfo, results.buildResult(displayInfo));
                }
                statement.executeBatch();
            }
        }
    
        private long insertExecution(Connection connection, R results) throws SQLException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                    addOperations(statement, testId, baselineVersion.getVersion(), baselineVersion.getResults());
                }
                statement.executeBatch();
            }
        }
    
        private long insertExecution(Connection connection, CrossVersionPerformanceResults results) throws SQLException {
            String insertStatement = insertStatement("testExecution",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top