本文整理汇总了Java中java.sql.Connection.clearWarnings方法的典型用法代码示例。如果您正苦于以下问题:Java Connection.clearWarnings方法的具体用法?Java Connection.clearWarnings怎么用?Java Connection.clearWarnings使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.sql.Connection
的用法示例。
在下文中一共展示了Connection.clearWarnings方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getConnection
import java.sql.Connection; //导入方法依赖的package包/类
/**
* @return a Connection instance that can be used to connect to the
* given database, if a previously-opened connection is available in
* the cache. Returns null if none is available in the map.
*/
public synchronized Connection getConnection(String connectStr,
String username) throws SQLException {
CacheKey key = new CacheKey(connectStr, username);
Connection cached = connectionMap.get(key);
if (null != cached) {
connectionMap.remove(key);
if (cached.isReadOnly()) {
// Read-only mode? Don't want it.
cached.close();
}
if (cached.isClosed()) {
// This connection isn't usable.
return null;
}
cached.rollback(); // Reset any transaction state.
cached.clearWarnings();
LOG.debug("Got cached connection for " + key);
}
return cached;
}
示例2: initializes_lazy
import java.sql.Connection; //导入方法依赖的package包/类
@Test
public void initializes_lazy() throws SQLException {
final Connection proxy = subject.getConnection();
assertNotNull(proxy);
verify(factory, never()).get();
proxy.clearWarnings();
proxy.clearWarnings();
verify(factory).get();
}