Subject Re: [Firebird-Java] Getting Table Names
Author Roman Rokytskyy
> I have a databse called test. I want to get the table
> names from this DB.Is there any api to get this?

Check the Javadoc documentation and tutorials on the
java.sql.DatabaseMetaData.getTables(String, String, String, String[])

For Firebird the catalog and schema are not important (they are ignored).

Roman