Here you can find the source of tableExists(java.sql.Connection conn, java.lang.String table)
Parameter | Description |
---|---|
conn | (undocumented) |
table | (undocumented) |
static public boolean tableExists(java.sql.Connection conn, java.lang.String table)
//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(); } }