本文整理汇总了Java中java.sql.Connection.setSchema方法的典型用法代码示例。如果您正苦于以下问题:Java Connection.setSchema方法的具体用法?Java Connection.setSchema怎么用?Java Connection.setSchema使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.sql.Connection
的用法示例。
在下文中一共展示了Connection.setSchema方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getConnection
import java.sql.Connection; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*
* @see jp.co.future.uroborosql.connection.ConnectionSupplier#getConnection()
*/
@Override
public Connection getConnection() {
try {
String jdbcUrl = props.get(PROPS_JDBC_URL);
String jdbcUser = props.get(PROPS_JDBC_USER);
String jdbcPassword = props.get(PROPS_JDBC_PASSWORD);
Connection connection = DriverManager.getConnection(jdbcUrl, jdbcUser, jdbcPassword);
String schema = getSchema();
if (schema != null) {
connection.setSchema(schema);
}
connection.setAutoCommit(getAutoCommit());
connection.setReadOnly(getReadOnly());
int transactionIsolation = getTransactionIsolation();
if (transactionIsolation > 0) {
connection.setTransactionIsolation(transactionIsolation);
}
return connection;
} catch (SQLException ex) {
ex.printStackTrace();
return null;
}
}
示例2: apply
import java.sql.Connection; //导入方法依赖的package包/类
protected void apply(Connection conn, ConnectionProperties connProps)
throws SQLException {
if (connProps.isAutoCommit() != null) {
conn.setAutoCommit(connProps.isAutoCommit());
}
if (connProps.isReadOnly() != null) {
conn.setReadOnly(connProps.isReadOnly());
}
if (connProps.getTransactionIsolation() != null) {
conn.setTransactionIsolation(connProps.getTransactionIsolation());
}
if (connProps.getCatalog() != null) {
conn.setCatalog(connProps.getCatalog());
}
if (connProps.getSchema() != null) {
conn.setSchema(connProps.getSchema());
}
}
示例3: getConnection
import java.sql.Connection; //导入方法依赖的package包/类
@Override
public Connection getConnection(final String tenantIdentifier) throws SQLException {
final Connection connection = this.getAnyConnection();
try {
connection.setSchema(TenantUtil.createSchemaName(tenantIdentifier));
} catch (SQLException e) {
throw new HibernateException("Could not alter JDBC connection to specified schema [" + tenantIdentifier + "]",
e);
}
return connection;
}
示例4: releaseConnection
import java.sql.Connection; //导入方法依赖的package包/类
@Override
public void releaseConnection(final String tenantIdentifier, final Connection connection) throws SQLException {
try {
connection.setSchema(TenantUtil.createSchemaName(defaultTenant));
} catch (SQLException e) {
throw new HibernateException("Could not alter JDBC connection to specified schema [" + tenantIdentifier + "]",
e);
}
connection.close();
}