Java SQL Execute executeStatement(Connection conn, String command)

Here you can find the source of executeStatement(Connection conn, String command)

Description

execute Statement

License

Open Source License

Declaration

private static void executeStatement(Connection conn, String command) throws SQLException 

Method Source Code

//package com.java2s;
/*/*from   w  w w .ja v  a 2 s .  co m*/
 * Copyright 2013 Google Inc. All Rights Reserved.
 * 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;

public class Main {
    private static void executeStatement(Connection conn, String command) throws SQLException {
        java.sql.Statement statement = conn.createStatement();
        try {
            statement.executeUpdate(command);
        } finally {
            statement.close();
        }
    }
}

Related

  1. executeSQLCommandWithResult(Connection conn, String sql)
  2. executeSqlFile(Connection connection, String sqlPath)
  3. executeSqlFile(String filename, Connection connection)
  4. executeSqlFromSql(Connection connection, String sql, String name)
  5. executeStatement(Connection con, String sql)
  6. executeStatement(final String databaseName, final String statement)
  7. executeStatements(final Connection conn, final List statements)
  8. executeUnRegister(String schemaName, String tableName, String columnName, Connection con)