Package | Description |
---|---|
tap | |
tap.config | |
tap.data | |
tap.db | |
tap.log | |
tap.upload |
Modifier and Type | Method and Description |
---|---|
abstract DBConnection |
TAPFactory.getConnection(java.lang.String jobID)
Get a free database connection.
|
Modifier and Type | Method and Description |
---|---|
abstract Uploader |
TAPFactory.createUploader(DBConnection dbConn)
Create an object able to manage the creation of submitted user tables (in VOTable) into the database.
|
Uploader |
AbstractTAPFactory.createUploader(DBConnection dbConn)
This implementation just create an
Uploader instance with the given database connection. |
abstract void |
TAPFactory.freeConnection(DBConnection conn)
Free the given connection.
|
Modifier and Type | Method and Description |
---|---|
DBConnection |
ConfigurableTAPFactory.getConnection(java.lang.String jobID)
Build a
JDBCConnection thanks to the database parameters specified
in the TAP configuration file (the properties: jdbc_driver_path, db_url, db_user, db_password). |
Modifier and Type | Method and Description |
---|---|
void |
ConfigurableTAPFactory.freeConnection(DBConnection conn) |
Constructor and Description |
---|
ResultSetTableIterator(DBConnection dbConn,
java.sql.ResultSet dataSet)
Build a TableIterator able to read rows and columns of the given ResultSet.
|
ResultSetTableIterator(DBConnection dbConn,
java.sql.ResultSet dataSet,
DBColumn[] metadata)
Build a TableIterator able to read rows and columns of the given ResultSet.
|
ResultSetTableIterator(DBConnection dbConn,
java.sql.ResultSet dataSet,
DBColumn[] resultMeta,
JDBCTranslator translator,
java.lang.String dbms)
Build a TableIterator able to read rows and columns of the given ResultSet.
|
ResultSetTableIterator(DBConnection dbConn,
java.sql.ResultSet dataSet,
JDBCTranslator translator,
java.lang.String dbms)
Build a TableIterator able to read rows and columns of the given ResultSet.
|
Modifier and Type | Class and Description |
---|---|
class |
JDBCConnection
This
DBConnection implementation is theoretically able to deal with any DBMS JDBC connection. |
Modifier and Type | Method and Description |
---|---|
void |
TAPLog.logDB(UWSLog.LogLevel level,
DBConnection connection,
java.lang.String event,
java.lang.String message,
java.lang.Throwable error)
Log a message and/or an error in the DB (database) context.
|
void |
Slf4jTAPLog.logDB(UWSLog.LogLevel level,
DBConnection connection,
java.lang.String event,
java.lang.String message,
java.lang.Throwable error) |
void |
DefaultTAPLog.logDB(UWSLog.LogLevel level,
DBConnection connection,
java.lang.String event,
java.lang.String message,
java.lang.Throwable error) |
Modifier and Type | Field and Description |
---|---|
protected DBConnection |
Uploader.dbConn
Connection to the "database" (which lets upload the content of any given
VOTable).
|
Constructor and Description |
---|
Uploader(ServiceConnection service,
DBConnection dbConn)
Build an
Uploader object. |
Uploader(ServiceConnection service,
DBConnection dbConn,
TAPSchema uplSchema)
Build an
Uploader object. |