Main components

JDBC Inspector

The jdbcadmin.core.tools.JdbcInspector class retrieves informations from a JDBC Database.

The main methods are :

  • getCatalogs retrieves all catalogs from a database
  • getSchemas retrieves all schemas from a database
  • getFullTables retrieves all tables from a schema

Table object

The jdbcadmin.core.data.Table class that represents a Table. Table objects are retrieved using the JdbcInspector. The table contains a list of the table's columns, the primary key, ...

Data Manager

The jdbcadmin.core.tools.DataManager class that contains data managing methods.

The main methods are :

  • select retrieves a line list from a table
  • insert inserts a line in the database
  • update updates a line
  • delete deletes a line from the database

See the javadoc for more informations.