Rick Hillegas <[email protected]> writes: > MikeRam wrote: >> How to list database names available in derby server (mysql SHOW TABLES >> equivalent) ?%-|
Derby's ij tool has a "SHOW tables" command, but only for the currently connected database. http://db.apache.org/derby/docs/10.5/tools/rtoolsijcomrefshow.html >From an application you could query Derby's system tables to the same effect. http://db.apache.org/derby/docs/10.5/ref/rrefsistabs24269.html It would not help you find the database names, though, as mentioned by others. Dag
