Answers for "how to check in jdbc that table exist or not in java"

0

java check if sql table exists

DatabaseMetaData dbm = con.getMetaData();
// check if "employee" table is there
ResultSet tables = dbm.getTables(null, null, "employee", null);
if (tables.next()) {
  // Table exists
}
else {
  // Table does not exist
}
Posted by: Guest on November-30-2020

Code answers related to "how to check in jdbc that table exist or not in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language