Modifier and Type | Method and Description |
---|---|
Connection |
DataspaceStore.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext context) |
Connection |
DataspaceStore.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext context,
com.streamscape.ds.persist.BaseStoreProperties props) |
Connection |
DataspaceStore.getJDBCConnection(java.lang.String username,
java.lang.String password) |
Modifier and Type | Class and Description |
---|---|
class |
JDBCConnection
Title: Data Space JDBC Driver
|
Modifier and Type | Method and Description |
---|---|
Connection |
JDBCDriver.connect(DataspaceAccessor accessor,
java.lang.String properties) |
Connection |
JDBCDriver.connect(DataspaceAccessor accessor,
java.util.TimeZone timezone) |
Connection |
JDBCDriver.connect(DataspaceAccessor accessor,
java.util.TimeZone timezone,
java.util.Properties properties) |
Connection |
JDBCDriver.connect(java.lang.String url,
java.util.Properties info)
Attempts to make a database connection to the given URL.
|
Connection |
JDBCStatement.getConnection()
Retrieves the
Connection object
that produced this Statement object. |
Connection |
JDBCPreparedStatement.getConnection()
Retrieves the
Connection object
that produced this Statement object. |
Connection |
JDBCDataSource.getConnection()
Retrieves a new connection using the properties that have already been
set.
|
Connection |
JDBCDatabaseMetaData.getConnection()
Retrieves the connection that produced this metadata object.
|
static Connection |
JDBCDriver.getConnection(java.lang.String url,
java.util.Properties info)
The static equivalent of the
connect(String,Properties)
method. |
Connection |
JDBCDataSource.getConnection(java.lang.String username,
java.lang.String password)
Retrieves a new connection using the given username and password,
and the database url that has been set.
|
Modifier and Type | Class and Description |
---|---|
class |
JDBCXAConnectionWrapper
Title: Dataspace Framework
|
Modifier and Type | Method and Description |
---|---|
Connection |
JDBCXAConnection.getConnection()
Returns a connection that can be used by the user application.
|
Modifier and Type | Method and Description |
---|---|
static Statement |
DataspaceAccessorProxy.createStatementAndExecute(Connection connection,
java.lang.String query,
int fetchSize) |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
VirtualServerObject.formatSQLExceptionMessage(Connection connection,
SQLException exception) |
static boolean |
VirtualServerObject.isMSAccessConnection(Connection connection) |
static boolean |
VirtualServerObject.isMSSQLConnection(Connection connection) |
static boolean |
VirtualServerObject.isStreamscapeDataspaceConnection(Connection connection) |
static boolean |
VirtualServerObject.isSybaseConnection(Connection connection) |
static boolean |
VirtualServerObject.isSybaseSpCall(Connection connection,
java.lang.String query) |
static DataspaceException |
VirtualServerObject.sqlToDataspaceException(Connection connection,
SQLException exception) |
Modifier and Type | Class and Description |
---|---|
class |
DatabaseConnectionDelegate
Title: Service Event Fabric Runtime
|
Modifier and Type | Method and Description |
---|---|
Connection |
DatabaseConnectionStatement.getConnection() |
Connection |
DatabaseConnectionDelegate.getRawConnection() |
Modifier and Type | Method and Description |
---|---|
static CallableStatement |
SQLQueryFactory.createCallableStatement(Connection connection,
SQLQuery object)
Creates callable statement based on given connection and sql query object.
|
static SQLQuery |
SQLQueryFactory.createForCall(Connection connection,
java.lang.String procedure)
Generates SQL script with parameters which then can be used to create query object and
call given stored procedure.
|
static SQLQuery |
SQLQueryFactory.createForDelete(Connection connection,
java.lang.String table)
Generates an SQLQuery DELETE script for specified
table table. |
static SQLQuery |
SQLQueryFactory.createForDelete(Connection connection,
java.lang.String table,
java.lang.String[] whereColumns)
Generates an SQLQuery DELETE script for specified
table table. |
static SQLQuery |
SQLQueryFactory.createForDynamicSQL(Connection connection,
java.lang.String query)
Returns SQLQuery object based on provided
query SQL prepared query. |
static SQLQuery |
SQLDynamicQueryParser.createForDynamicSQL(Connection connection,
java.lang.String query) |
static SQLQuery |
SQLQueryFactory.createForInsert(Connection connection,
java.lang.String table)
Generates SQL script with parameters which then can be used to create an SQL query object and
perform inserts into a given table.
|
static SQLQuery |
SQLQueryFactory.createForSelect(Connection connection,
java.lang.String table)
Generates an SQLQuery SELECT script that selects all columns from given table.
|
static SQLQuery |
SQLQueryFactory.createForSelect(Connection connection,
java.lang.String table,
java.lang.String[] selectColumns)
Generates an SQLQuery SELECT script that selects
selectColumns columns from given table. |
static SQLQuery |
SQLQueryFactory.createForSelect(Connection connection,
java.lang.String table,
java.lang.String[] selectColumns,
java.lang.String[] whereColumns)
Generates an SQLQuery SELECT script that selects
selectColumns columns from given table. |
static SQLQuery |
SQLQueryFactory.createForUpdate(Connection connection,
java.lang.String table)
Generates an SQLQuery UPDTAE script with parameters which then can be used to create an SQL query object and
perform an update on given table.
|
static SQLQuery |
SQLQueryFactory.createForUpdate(Connection connection,
java.lang.String table,
java.lang.String[] updateColumns)
Generates an SQLQuery UPDTAE script for specified
updateColumns columns. |
static SQLQuery |
SQLQueryFactory.createForUpdate(Connection connection,
java.lang.String table,
java.lang.String[] updateColumns,
java.lang.String[] whereColumns)
Generates an SQLQuery UPDATE script for specified
updateColumns columns. |
static PreparedStatement |
SQLQueryFactory.createPreparedStatement(Connection connection,
SQLQuery object)
Creates prepared statement based on given connection and sql query object.
|
static int |
SQLQueryFactory.execute(SQLQueryBatch batch,
int queryTimeout,
Connection connection)
Execute the batch query contained in the SQL script object.
|
static java.util.List |
SQLQueryFactory.execute(SQLQuery query,
int queryTimeout,
Connection connection)
Execute the query contained in the SQL script object.
|
static java.util.List |
DatabaseDescriptor.getQueryColumns(java.lang.String query,
Connection connection,
java.util.List params) |
static java.util.List |
DatabaseDescriptor.getStoredProcedureParameters(java.lang.String procName,
Connection connection) |
static java.util.List |
DatabaseDescriptor.getStoredProcedures(Connection connection) |
static java.util.List |
DatabaseDescriptor.getTableColumns(SQLTableName tableName,
Connection connection)
Deprecated.
|
static java.util.List |
DatabaseDescriptor.getTableColumns(SQLTableName tableName,
Connection connection,
java.lang.String[] columnNames,
int ordinal) |
static java.util.List |
DatabaseDescriptor.getTables(Connection connection) |
static java.lang.String |
DatabaseDescriptor.quoteColumnName(java.lang.String name,
Connection connection) |
static java.lang.String |
DatabaseDescriptor.quoteTableName(java.lang.String name,
Connection connection) |
java.lang.String |
SQLTableName.toQuotedString(Connection connection) |
Constructor and Description |
---|
StoredProcedureDescription(java.lang.String procName,
Connection connection) |
Modifier and Type | Method and Description |
---|---|
IDatabaseDialect |
DatabaseDialectsPool.getDialect(Connection connection)
Returns database dialect for provided connection
|
Modifier and Type | Method and Description |
---|---|
Connection |
Store.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext securityContext) |
Connection |
DataspaceManager.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext secContext) |
Connection |
Store.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext securityContext,
com.streamscape.ds.persist.BaseStoreProperties props) |
Connection |
DataspaceManager.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext secContext,
com.streamscape.ds.persist.BaseStoreProperties props) |
Connection |
Store.getJDBCConnection(java.lang.String username,
java.lang.String password) |
Connection |
DataspaceManager.getJDBCConnection(java.lang.String username,
java.lang.String password)
Returns JDBC Connection object to the embedded dataspace store.
|
Modifier and Type | Method and Description |
---|---|
Connection |
ServiceContext.getJDBCConnection(java.lang.String dataspaceName)
Returns a JDBC Connection object to the embedded dataspace store.
|
Modifier and Type | Interface and Description |
---|---|
interface |
DatabaseConnection
Title: Open Service Framework
|
Modifier and Type | Method and Description |
---|---|
Connection |
DatabaseConnection.getRawConnection()
Returns underlying connection.
|
static Connection |
DatabaseConnection.getRawConnection(Connection connection) |
Modifier and Type | Method and Description |
---|---|
static Connection |
DatabaseConnection.getRawConnection(Connection connection) |
Modifier and Type | Method and Description |
---|---|
Connection |
Driver.connect(java.lang.String url,
java.util.Properties info)
Attempts to make a database connection to the given URL.
|
Connection |
Statement.getConnection()
Retrieves the
Connection object
that produced this Statement object. |
Connection |
DatabaseMetaData.getConnection()
Retrieves the connection that produced this metadata object.
|
static Connection |
DriverManager.getConnection(java.lang.String url)
Attempts to establish a connection to the given database URL.
|
static Connection |
DriverManager.getConnection(java.lang.String url,
java.util.Properties info)
Attempts to establish a connection to the given database URL.
|
static Connection |
DriverManager.getConnection(java.lang.String url,
java.lang.String user,
java.lang.String password)
Attempts to establish a connection to the given database URL.
|
Copyright © 2015-2024 StreamScape Technologies. All rights reserved.