public interface Dialect extends Serializable
Modifier and Type | Method and Description |
---|---|
String |
dialectName()
方言名
|
Wrapper |
getWrapper() |
default PreparedStatement |
psForCount(Connection conn,
Query query)
构建用于查询行数的
PreparedStatement 用户实现需按照数据库方言格式,将 Query 转换为带有占位符的SQL语句及参数列表Query 中包含了表名、查询条件等信息,可借助SqlBuilder完成SQL语句生成。 |
default PreparedStatement |
psForCount(Connection conn,
SqlBuilder sqlBuilder)
构建用于查询行数的
PreparedStatement 用户实现需按照数据库方言格式,将 Query 转换为带有占位符的SQL语句及参数列表Query 中包含了表名、查询条件等信息,可借助SqlBuilder完成SQL语句生成。 |
PreparedStatement |
psForDelete(Connection conn,
Query query)
构建用于删除的
PreparedStatement 用户实现需按照数据库方言格式,将 Query 转换为带有占位符的SQL语句及参数列表Query 中包含了删除所需的表名、查询条件等信息,可借助SqlBuilder完成SQL语句生成。 |
PreparedStatement |
psForFind(Connection conn,
Query query)
构建用于获取多条记录的
PreparedStatement 用户实现需按照数据库方言格式,将 Query 转换为带有占位符的SQL语句及参数列表Query 中包含了查询所需的表名、查询条件等信息,可借助SqlBuilder完成SQL语句生成。 |
PreparedStatement |
psForInsert(Connection conn,
Entity entity)
|
PreparedStatement |
psForInsertBatch(Connection conn,
Entity... entities)
构建用于批量插入的PreparedStatement
用户实现需按照数据库方言格式,将 Entity 转换为带有占位符的SQL语句及参数列表 |
PreparedStatement |
psForPage(Connection conn,
Query query)
构建用于分页查询的
PreparedStatement 用户实现需按照数据库方言格式,将 Query 转换为带有占位符的SQL语句及参数列表Query 中包含了分页查询所需的表名、查询条件、分页等信息,可借助SqlBuilder完成SQL语句生成。 |
PreparedStatement |
psForPage(Connection conn,
SqlBuilder sqlBuilder,
Page page)
|
PreparedStatement |
psForUpdate(Connection conn,
Entity entity,
Query query)
构建用于更新的
PreparedStatement 用户实现需按照数据库方言格式,将 Entity 配合Query 转换为带有占位符的SQL语句及参数列表其中 Entity 中包含需要更新的数据信息,Query 包含更新的查找条件信息。 |
default PreparedStatement |
psForUpsert(Connection conn,
Entity entity,
String... keys)
|
void |
setWrapper(Wrapper wrapper)
设置包装器
|
Wrapper getWrapper()
void setWrapper(Wrapper wrapper)
wrapper
- 包装器PreparedStatement psForInsert(Connection conn, Entity entity) throws SQLException
conn
- 数据库连接对象entity
- 数据实体类(包含表名)SQLException
- SQL执行异常PreparedStatement psForInsertBatch(Connection conn, Entity... entities) throws SQLException
Entity
转换为带有占位符的SQL语句及参数列表conn
- 数据库连接对象entities
- 数据实体,实体的结构必须全部一致,否则插入结果将不可预知SQLException
- SQL执行异常PreparedStatement psForDelete(Connection conn, Query query) throws SQLException
PreparedStatement
Query
转换为带有占位符的SQL语句及参数列表Query
中包含了删除所需的表名、查询条件等信息,可借助SqlBuilder完成SQL语句生成。conn
- 数据库连接对象query
- 查找条件(包含表名)SQLException
- SQL执行异常PreparedStatement psForUpdate(Connection conn, Entity entity, Query query) throws SQLException
PreparedStatement
Entity
配合Query
转换为带有占位符的SQL语句及参数列表Entity
中包含需要更新的数据信息,Query
包含更新的查找条件信息。conn
- 数据库连接对象entity
- 数据实体类(包含表名)query
- 查找条件(包含表名)SQLException
- SQL执行异常PreparedStatement psForFind(Connection conn, Query query) throws SQLException
PreparedStatement
Query
转换为带有占位符的SQL语句及参数列表Query
中包含了查询所需的表名、查询条件等信息,可借助SqlBuilder完成SQL语句生成。conn
- 数据库连接对象query
- 查询条件(包含表名)SQLException
- SQL执行异常PreparedStatement psForPage(Connection conn, Query query) throws SQLException
PreparedStatement
Query
转换为带有占位符的SQL语句及参数列表Query
中包含了分页查询所需的表名、查询条件、分页等信息,可借助SqlBuilder完成SQL语句生成。conn
- 数据库连接对象query
- 查询条件(包含表名)SQLException
- SQL执行异常PreparedStatement psForPage(Connection conn, SqlBuilder sqlBuilder, Page page) throws SQLException
conn
- 数据库连接对象sqlBuilder
- SQL构建器,可以使用SqlBuilder.of(CharSequence)
包装普通SQLpage
- 分页对象SQLException
- SQL执行异常default PreparedStatement psForCount(Connection conn, Query query) throws SQLException
PreparedStatement
Query
转换为带有占位符的SQL语句及参数列表Query
中包含了表名、查询条件等信息,可借助SqlBuilder完成SQL语句生成。conn
- 数据库连接对象query
- 查询条件(包含表名)SQLException
- SQL执行异常default PreparedStatement psForCount(Connection conn, SqlBuilder sqlBuilder) throws SQLException
PreparedStatement
Query
转换为带有占位符的SQL语句及参数列表Query
中包含了表名、查询条件等信息,可借助SqlBuilder完成SQL语句生成。conn
- 数据库连接对象sqlBuilder
- 查询语句,应该包含分页等信息SQLException
- SQL执行异常default PreparedStatement psForUpsert(Connection conn, Entity entity, String... keys) throws SQLException
conn
- 数据库连接对象entity
- 数据实体类(包含表名)keys
- 查找字段,某些数据库此字段必须,如H2,某些数据库无需此字段,如MySQL(通过主键)SQLException
- SQL执行异常,或方言数据不支持此操作String dialectName()
Copyright © 2024. All rights reserved.