Java SQL Date Convert totalUpdateCount(int[] result)

Here you can find the source of totalUpdateCount(int[] result)

Description

Summarize the returned array of java.sql.Statement#executeBatch()

License

Apache License

Parameter

Parameter Description
result result of java.sql.Statement#executeBatch()

Return

at least how many rows had been successfully updated

Declaration

public static int totalUpdateCount(int[] result) 

Method Source Code

//package com.java2s;
/*// w  w  w .j  a  va 2  s . c  o m
Copyright 2010 Zhengmao HU (James)
    
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    
http://www.apache.org/licenses/LICENSE-2.0
    
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

public class Main {
    /**
     * Summarize the returned array of {@link java.sql.Statement#executeBatch()}
     * @param result   result of {@link java.sql.Statement#executeBatch()}
     * @return      at least how many rows had been successfully updated
     */
    public static int totalUpdateCount(int[] result) {
        int total = 0;
        for (int i : result) {
            if (i >= 0) {
                total += i;
            }
        }
        return total;
    }
}

Related

  1. toIntDate(Object object, int iDefault)
  2. toJavaDate(java.sql.Date date)
  3. toJavaDate(java.sql.Date sqlDate)
  4. toLong(java.util.Date v)
  5. toName(Date date)
  6. toYMD(Date date, String datePtn)