【Java ORM思想】手写Sxt ORM框架 笔记
Connections.getTables() 方法 Retrieves a description of the tables available in the given catalog.Only table descriptions matching the catalog, schema, tablename and type criteria are returned. They are ordered by TABLE_TYPE, TABLE_CAT, TABLE_SCHEM and TABLE_NAME. Each table description has the following columns: 1.TABLE_CAT String => table catalog (may be null) 2.TABLE_SCHEM String => table schema (may be null) 3.TABLE_NAME String => table name 4.TABLE_TYPE String => table type. Typical types are “TABLE”,“VIEW”, “SYSTEM TABLE”, “GLOBAL TEMPORARY”,“LOCAL TEMPORARY”, “ALIAS”, “SYNONYM”. 5.REMARKS