| 123456789101112131415161718192021222324 |
- package org.apache.kyuubi.engine.jdbc.session;
- import java.sql.Connection;
- /**
- * <pre>
- *
- * Created by zhenqin.
- * User: zhenqin
- * Date: 2026/2/11
- * Time: 13:32
- * Vendor: yiidata.com
- *
- * </pre>
- *
- * @author zhenqin
- */
- public interface JdbcConnection extends Connection {
- /**
- * 直接关闭
- */
- public void directClose();
- }
|