javascript - SQL Editor In java -
i have created database editor java web application & want search text box in jsp file below image....
you can use java.sql.databasemetadata
list of tables in schema.
connection conn = ...; // jdbc connection databasemetadata metadata = conn.getmetadata(); resultset resultset = metadata.gettables("catalog", "schemapattern", "tablenamepattern", null);
see api documentation of gettables(...)
more detailed usage information.
Comments
Post a Comment