Java SQL Table Exist tableExists(java.sql.Connection conn, java.lang.String table)

Here you can find the source of tableExists(java.sql.Connection conn, java.lang.String table)

Description

Returns true if the table already exists in the JDBC database.

License

Apache License

Parameter

Parameter Description
conn (undocumented)
table (undocumented)

Return

(undocumented)

Declaration

static public boolean tableExists(java.sql.Connection conn, java.lang.String table) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    /**/* w w w.ja  v a2s  .c  om*/
     * Returns true if the table already exists in the JDBC database.
     * @param conn (undocumented)
     * @param table (undocumented)
     * @return (undocumented)
     */
    static public boolean tableExists(java.sql.Connection conn, java.lang.String table) {
        throw new RuntimeException();
    }
}

Related

  1. tableExist(Statement stmt, String tablename)
  2. tableExists(Connection con, String table)
  3. tableExists(Connection con, String tableName)
  4. tableExists(Connection conn, String name)
  5. tableExists(Connection conn, String tableName)
  6. tableExists(Statement stmt, String name)