In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
(study record)
For Table class and Field class in the code, please refer to: http://meijia.blog.51cto.com/8684191/1563874
You can adjust the relevant parameters by referring to api.
(also pay attention to format)
1. The method is as follows
Public List export () {
List tableList = new ArrayList ()
Connection conn = DBUtil.getConnection ()
ResultSet tableRs = null; / / inventory metadata
ResultSet colRs = null;// stores table metadata
Try {
DatabaseMetaData dbmd = conn.getMetaData (); / / returns the metadata of the database to which this Connection object is connected
/ / get all tables
List tableNameList = new ArrayList ()
TableRs = dbmd.getTables (null, "%", "%", new String [] {"TABLE"}); / / all tables
While (tableRs.next ()) {
String tableName = tableRs.getString ("TABLE_NAME"); / / Table name
TableNameList.add (tableName)
}
List fieldList = null;// stores all fields of each table
Table table = null
For (String name: tableNameList) {
Table = new Table ()
/ / get the fields of the table
ColRs = dbmd.getColumns (null, "%", name, "%"); / / Fields of the current table
Field field = null
FieldList = new ArrayList ()
While (colRs.next ()) {
Field = new Field ()
String columnName = colRs.getString ("COLUMN_NAME"); / / name
String columnType = colRs.getString ("TYPE_NAME"); / / Type
Int datasize = colRs.getInt ("COLUMN_SIZE"); / / Field length
Int digits = colRs.getInt ("DECIMAL_DIGITS")
Int nullable = colRs.getInt ("NULLABLE"); / / return 1 means it can be Null, while 0 means Not Null
Field.setColumnName (columnName)
Field.setTypeName (columnType)
Field.setColumnSize (datasize)
Field.setDecimal_digits (digits)
Field.setNullable (nullable)
FieldList.add (field)
}
Table.setTableName (name)
Table.setField (fieldList)
TableList.add (table)
}
} catch (SQLException ex) {
Logger.getLogger (ExportOracleTable.class.getName ()) .log (Level.SEVERE, null, ex)
} finally {
If (colRs! = null) {
Try {
ColRs.close ()
} catch (SQLException ex) {
Logger.getLogger (ExportOracleTable.class.getName ()) .log (Level.SEVERE, null, ex)
}
}
If (tableRs! = null) {
Try {
TableRs.close ()
} catch (SQLException ex) {
Logger.getLogger (ExportOracleTable.class.getName ()) .log (Level.SEVERE, null, ex)
}
}
If (conn! = null) {
Try {
Conn.close ()
} catch (SQLException ex) {
Logger.getLogger (ExportOracleTable.class.getName ()) .log (Level.SEVERE, null, ex)
}
}
}
Return tableList
}
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.