io.vertx.ext.sql.SQLConnection.unwrap()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(0.7k)|赞(0)|评价(0)|浏览(178)

本文整理了Java中io.vertx.ext.sql.SQLConnection.unwrap()方法的一些代码示例,展示了SQLConnection.unwrap()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SQLConnection.unwrap()方法的具体详情如下:
包路径:io.vertx.ext.sql.SQLConnection
类名称:SQLConnection
方法名:unwrap

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);

相关文章