Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Table structure in Oracle read Library

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.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report