Java SQL Date Format formatSqlException( StringBuilder errorMessage, SQLException exception)

Here you can find the source of formatSqlException( StringBuilder errorMessage, SQLException exception)

Description

format Sql Exception

License

Apache License

Declaration

private static StringBuilder formatSqlException(
            StringBuilder errorMessage, SQLException exception) 

Method Source Code

//package com.java2s;
/*//from  w w  w .  j  a  va 2 s  . c  om
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.SQLException;

public class Main {
    private static StringBuilder formatSqlException(
            StringBuilder errorMessage, SQLException exception) {
        final String sqlState = exception.getSQLState();
        final int errorCode = exception.getErrorCode();
        final String message = exception.getMessage();
        return errorMessage.append("SQLState: ").append(sqlState)
                .append(" ErrorCode: ").append(errorCode)
                .append(" Message: ").append(message);
    }
}

Related

  1. formatDurationMillisToString(long millis)
  2. formatFloat(int floatValue)
  3. formatLogParam(Array obj)
  4. formatNumberWithZeroPrefix(int numOfZero, Integer value)
  5. formatSQLError(SQLException e)
  6. formatSQLForColumnName(Connection conn, String strSQL)