Java SQL Time resetNetworkTimeout(Connection rawConnection, Executor executor, int oldTimeout)

Here you can find the source of resetNetworkTimeout(Connection rawConnection, Executor executor, int oldTimeout)

Description

reset Network Timeout

License

Apache License

Declaration

private static void resetNetworkTimeout(Connection rawConnection, Executor executor, int oldTimeout)
            throws SQLException 

Method Source Code

//package com.java2s;
/**//from  w w  w.j  a  v  a 2 s.  co m
 * Copyright 2013 Simeon Malchev
 *
 * 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.
 */

import java.sql.Connection;

import java.sql.SQLException;

import java.util.concurrent.Executor;

public class Main {
    private static void resetNetworkTimeout(Connection rawConnection, Executor executor, int oldTimeout)
            throws SQLException {
        if (oldTimeout >= 0)
            rawConnection.setNetworkTimeout(executor, oldTimeout);
    }
}

Related

  1. parseCalendar(final TimeZone timezone, final Locale locale, final String dateformat, final String datestring)
  2. parseDate(String datetime, String format)
  3. readTime(ByteBuffer buffer)
  4. removeTimefromDate(Date inputDate)
  5. resetDayTime(Time date)
  6. roundDatetimeValue(Object value)
  7. roundSmallDateTimeValue(Object value)
  8. saveGameScores(String gameName, String player1, String player2, String player3, String player4, short score1, short score2, short score3, short score4, java.util.Date startTime)
  9. serialize(LocalDateTime date)