This document lists changes made to the Database Explorer API/SPI.
Fuller descriptions of all changes can be found below (follow links).
Not all deprecations are listed here, assuming that the deprecated APIs continue to essentially work. For a full deprecation list, please consult the Javadoc.
These API specification versions may be used to indicate that a module requires a certain API feature in order to function. For example, if you see here a feature you need which is labelled 1.20, your manifest should contain in its main attributes the line:
OpenIDE-Module-Module-Dependencies: org.netbeans.api.db.explorer > 1.20
org.netbeans.api.db.explorer.ConnectionManager
org.netbeans.api.db.explorer.DatabaseConnection
org.netbeans.api.db.explorer.support.DatabaseExplorerUIs
org.netbeans.api.db.explorer.DatabaseMetaDataTransfer
org.netbeans.api.db.explorer.JDBCDriver
org.netbeans.api.db.explorer.JDBCDriverManager
org.netbeans.api.db.sql.support.SQLIdentifiers
SQLIdentifiers
; made by: matthiasblaesing
SQLIdentifiers
now returns a fallback
Quoter
if there is no DatabaseMetaData
.
The fallback quoter supports unquoting most common identifier
quoting formats, uses SQL-99 quotes for quoting and quotes all
identifiers, that don't start with an ascii character or
contain ascii non-characters or non-numbers.
DatabaseConnection
; made by: jhavlin; issues:
#231030
DatabaseConnection
; made by: matthias42; issues:
#197408
DatabaseConnection
; made by: jrechtacek; issues:
#192150
DatabaseConnection
; made by: jrechtacek; issues:
#90210
DatabaseConnection.getJDBCDriver()
method should be added.
DatabaseConnection
; made by: davidvc; issues:
#143837
SQLIdentifiers
; made by: abadea; issues:
#143441
JDBCDriver
; made by: davidvc; issues:
#134309
JDBCDriverManager
; made by: davidvc; issues:
#129633
JDBCDriver
that was added.
ConnectionManager
; made by: davidvc; issues:
#128546
ConnectionManager
; made by: davidvc; issues:
#128502
SQLIdentifiers
; made by: davidvc; issues:
#115075
SQLIdentifiers.Quoter
class which
provides a utility method for quoting SQL identifiers.
DatabaseMetaDataTransfer
; made by: abadea; issues:
#96200
DatabaseMetaDataTransfer
class which
contains DataFlavor
s for database objects and nested classes
representing those database objects during a drag and drop transfer.
ConnectionManager
; made by: abadea; issues:
#80629
showAddConnectionDialog
which opens the
New Connection Dialog while pre-filling a specified database user and password.
It also adds showAddConnectionDialogFromEventThread
methods
which are counterparts to the showAddConnectionDialog
methods,
with the difference that they return the newly added database connection,
but must be called from the event dispatching thread.
DatabaseExplorerUIs
; made by: abadea; issues:
#73713
DatabaseExplorerUIs.connect()
method, which populates a JComboBox
with the list of connections
from a ConnectionManager
.
ConnectionManager
; made by: sdedic
DatabaseExplorerUIs
; made by: sdedic