Java SQL Query getSqlQuery(Statement statement, Object[] args)

Here you can find the source of getSqlQuery(Statement statement, Object[] args)

Description

get Sql Query

License

Apache License

Declaration

public static String getSqlQuery(Statement statement, Object[] args) 

Method Source Code

//package com.java2s;
/**//from   w  ww. j  a va2 s  .  com
 * Copyright 2015 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.PreparedStatement;
import java.sql.Statement;
import java.util.Arrays;

public class Main {
    public static String getSqlQuery(Statement statement, Object[] args) {
        return statement instanceof PreparedStatement ? statement.toString() : Arrays.toString(args); // the latter is for simple JDBC Statements
    }
}

Related

  1. executeQuery(String sql, String[] parameters)
  2. executeQuery2(java.sql.Connection con, String select, Object... pk)
  3. executeRetrievalByIDQuery(PreparedStatement theStatement, int theID)
  4. executeSafeQuery( Connection conn, String sql)
  5. executeStatement(Connection connection, String query)
  6. getStatement(Connection con, String query, Object... bits)
  7. query(Connection conn, String sql)
  8. query(Connection conn, String sql, Object[] params, Class beanClass)
  9. query(Connection connection, String sql, boolean isClose, Object... params)