How can I detect if a certain table exists in a given SQL database in Java?
|
|
You can use DatabaseMetaData.getTables() to get information about existing tables. This method works transparently and is independent of the database engine. I think it queries information schema tables behind the scenes. Edit: Here is an example that prints all existing table names.
|
|||||
|
|
Use java.sql.DatabaseMetaData.getTables(null, null, YOUR_TABLE, null). If the table exists, you will get a ResultSet with one record. |
|||
|
|
|
Write a query that queries the table/view that will list the tables (this is different depending on DB vendor). Call that from Java. Googling information_schema.tables will help a lot. |
|||
|
|
|
This is not a language-specific, but a database-specific problem. You'd query the metadata in the database for the existence of that particular object. In SQL Server for instance:
|
|||
|
|
|
Depending on the DB, you can do (MySQL)
or (Oracle)
or another thing for SQL Server. Cycle through the results for MySQL or further filter on the Oracle one. |
|||
|
|
|
Why not just see if it is in sysobjects (for SQL Server)?
|
|||
|
|
|
There is a JDBC feature, database vendor independent - see [java.sql.DatabaseMetaData#getTables()][1] You can get the DatabaseMetaData instance by calling java.sql.Connection#getMetaData() [1]: http://java.sun.com/javase/6/docs/api/java/sql/DatabaseMetaData.html#getTables(java.lang.String, java.lang.String, java.lang.String, java.lang.String[]) |
|||
|
|
|
For MS Access:
|
|||
|
|
|
For ALL ANSI-compliant databases: (mySQL, SQL Server 2005/2008, Oracle, PostgreSQL, SQLLite, maybe others)
|
|||
|
|
|
I'm trying to do this against Amazon's RDS (running MySql), and the solutions posted here not working. Everything just returns an empty ResultSet. The only thing I've been able to get to work is:
I'm not sure if the problems with the other solutions in this thread are unique to RDS or it's something about JDBC that is eluding me. |
|||
|
|
|
Maybe catch the exception if a simple query to it fail? |
|||||||||||||
|