public interface Dialect
| 限定符和类型 | 方法和说明 |
|---|---|
DialectName |
dialectName()
方言名
|
Wrapper |
getWrapper() |
PreparedStatement |
psForCount(Connection conn,
Query query)
构建用于查询行数的PreparedStatement
|
PreparedStatement |
psForDelete(Connection conn,
Query query)
构建用于删除的PreparedStatement
|
PreparedStatement |
psForFind(Connection conn,
Query query)
构建用于获取多条记录的PreparedStatement
|
PreparedStatement |
psForInsert(Connection conn,
Entity entity)
构建用于插入的PreparedStatement
|
PreparedStatement |
psForPage(Connection conn,
Query query)
构建用于分页查询的PreparedStatement
|
PreparedStatement |
psForUpdate(Connection conn,
Entity entity,
Query query)
构建用于更新的PreparedStatement
|
void |
setWrapper(Wrapper wrapper)
设置包装器
|
Wrapper getWrapper()
void setWrapper(Wrapper wrapper)
wrapper - 包装器PreparedStatement psForInsert(Connection conn, Entity entity) throws SQLException
conn - 数据库连接对象entity - 数据实体类(包含表名)SQLExceptionPreparedStatement psForDelete(Connection conn, Query query) throws SQLException
conn - 数据库连接对象query - 查找条件(包含表名)SQLExceptionPreparedStatement psForUpdate(Connection conn, Entity entity, Query query) throws SQLException
conn - 数据库连接对象entity - 数据实体类(包含表名)query - 查找条件(包含表名)SQLExceptionPreparedStatement psForFind(Connection conn, Query query) throws SQLException
conn - 数据库连接对象query - 查询条件(包含表名)SQLExceptionPreparedStatement psForPage(Connection conn, Query query) throws SQLException
conn - 数据库连接对象query - 查询条件(包含表名)SQLExceptionPreparedStatement psForCount(Connection conn, Query query) throws SQLException
conn - 数据库连接对象query - 查询条件(包含表名)SQLExceptionDialectName dialectName()
Copyright © 2017. All rights reserved.