本文整理了Java中io.vertx.ext.sql.SQLConnection.unwrap()
方法的一些代码示例,展示了SQLConnection.unwrap()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SQLConnection.unwrap()
方法的具体详情如下:
包路径:io.vertx.ext.sql.SQLConnection
类名称:SQLConnection
方法名:unwrap
[英]Return the underlying Connection object if available. This is not mandated to be implemented by the clients.
[中]返回基础连接对象(如果可用)。这不是客户强制执行的。
代码示例来源:origin: io.vertx/vertx-jdbc-client
@Test
public void testGetNativeConn() {
assertNotNull(connection().unwrap());
testComplete();
}
代码示例来源:origin: vert-x3/vertx-rx
try {
for (String sql : SQL) {
conn.getDelegate().<Connection>unwrap().createStatement().execute(sql);
内容来源于网络,如有侵权,请联系作者删除!