I have a desktop application with a database embedded in it. When I execute my program I need to check that specific table exists, or create it if not.
Given a Connection object named conn for my database, how could I check this?
|
|
You can use the available meta data:
See here for more details. |
|||
|
|
|
||||
|
|
|
Adding to Gaby's post, my jdbc getTables() for Oracle 10g requires all caps to work: "employee" -> "EMPLOYEE" Otherwise I would get an exception: java.sql.SqlExcepcion exhausted resultset (even though "employee" is in the schema) |
|||
|
|