Package | Description |
---|---|
cn.hutool.db |
Hutool-db是一个在JDBC基础上封装的数据库操作工具类,通过包装,使用ActiveRecord思想操作数据库。
|
Modifier and Type | Method and Description |
---|---|
static Session |
Session.create()
创建默认数据源会话
|
static Session |
Session.create(DataSource ds)
创建会话
|
static Session |
Session.create(String group)
创建会话
|
Session |
Session.disableWrapper() |
static Session |
DbUtil.newSession()
新建数据库会话,使用默认数据源
|
static Session |
DbUtil.newSession(DataSource ds)
新建数据库会话
|
Session |
Session.setWrapper(Character wrapperChar) |
Session |
Session.setWrapper(Wrapper wrapper) |
Modifier and Type | Method and Description |
---|---|
void |
Session.tx(VoidFunc1<Session> func)
在事务中执行操作,通过实现
VoidFunc1 接口的call方法执行多条SQL语句从而完成事务 |
Copyright © 2024. All rights reserved.