vote up 2 vote down star

How can I detect if a certain table exists in a given SQL database in Java?

flag

1  
Depends on what database server. There is usually a table with all the table names in it, you could just query it. – Geoffrey Chetwood May 29 at 19:53
sorry this is my first time using SQL, the DB is in Access – Soldier.moth May 29 at 19:59
2  
java.sql.DatabaseMetaData.getTables is cross-database(JDBC Driver takes care of database differences). – adrian.tarau May 29 at 20:00

10 Answers

vote up 9 vote down check

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.

DatabaseMetaData md = connection.getMetaData();
ResultSet rs = md.getTables(null, null, "%", null);
while (rs.next()) {
  System.out.println(rs.getString(3));
}
link|flag
Thanks that is perfect. – Soldier.moth May 29 at 20:09
vote up 3 vote down

Use java.sql.DatabaseMetaData.getTables(null, null, YOUR_TABLE, null). If the table exists, you will get a ResultSet with one record.

See DatabaseMetaData.getTables

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

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:

SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[table]')
   AND type in (N'U')
link|flag
vote up 1 vote down

Depending on the DB, you can do (MySQL)

SHOW TABLES

or (Oracle)

SELECT * FROM user_objects WHERE object_type = 'TABLE'

or another thing for SQL Server. Cycle through the results for MySQL or further filter on the Oracle one.

link|flag
vote up 1 vote down

Why not just see if it is in sysobjects (for SQL Server)?

SELECT [name] FROM [sysobjects] WHERE type = 'U' AND [name] = 'TableName'
link|flag
vote up 0 vote down

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[])

link|flag
vote up 0 vote down

For MS Access:

Select Count(*) From MSysObjects 
Where type=1 And name='your_table_name_here'
link|flag
vote up 0 vote down

For ALL ANSI-compliant databases: (mySQL, SQL Server 2005/2008, Oracle, PostgreSQL, SQLLite, maybe others)

select 1 from information_schema.tables where table_name = @tableName
link|flag
vote up -3 vote down

Maybe catch the exception if a simple query to it fail?

link|flag
duh, wow I totally missed that sorry for the stupid question. Thanks though. – Soldier.moth May 29 at 19:52
Wouldn't this mean that you would interpret a misconfigured database connection or another error as the table not existing? You need to query the system to see definitively. – Paul Morie May 29 at 19:55
1  
It's not that stupid. There are many ways a simple query can fail, not only the inexistence of a table. Querying the metadata is the best option. – Alexandre May 29 at 19:56
Certainly sounds like a hacky solution. – RichardOD May 29 at 19:57
=D aeuhae, not if the query is "select * from table" and you catch only a SQLException – José Leal May 29 at 20:07

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.