摘要: 获取表元数据:String[] types = { "TABLE" }; ResultSet rs = dbMetaData.getTables(null, schemaName, "%", types); while (rs.next()) { String tableName = rs.getString("TABLE_NAME"); // table type. Typical types are "TAB... 阅读全文
posted @ 2012-12-13 19:03 echx 阅读(237) 评论(0) 推荐(0) 编辑