Package | Description |
---|---|
net.ymate.platform.persistence.jdbc.query |
Modifier and Type | Class and Description |
---|---|
class |
AbstractQueryBuilder<RESULT,QUERY_BUILDER extends AbstractQueryBuilder> |
class |
Cond
条件对象
|
class |
Delete
DELETE语句对象
|
class |
GroupBy
分组对象
|
class |
Insert
Insert语句对象
|
class |
Join
连接查询语句对象
|
class |
OrderBy
排序对象
|
static class |
Query.Executor<T>
查询执行器,用于解析和执行基于注解配置查询的类
|
class |
QueryBuilder<RESULT> |
class |
Select
Select语句对象
|
class |
Update
Update语句对象
|
Modifier and Type | Method and Description |
---|---|
static Delete |
Delete.create(Query<?> query) |
static Update |
Update.create(Query<?> query) |
static Cond |
Cond.create(Query<?> query) |
static Where |
Where.create(Query<?> query) |
static GroupBy |
GroupBy.create(Query<?> query) |
static Select |
Select.create(Query<?> query) |
static OrderBy |
OrderBy.create(Query<?> query) |
static FieldCondition |
FieldCondition.create(Query<?> query,
String fieldName) |
static Insert |
Insert.create(Query<?> query,
String prefix,
Class<? extends IEntity> entityClass) |
static FieldCondition |
FieldCondition.create(Query<?> query,
String prefix,
String fieldName) |
static Insert |
Insert.create(Query<?> query,
String prefix,
String tableName,
boolean safePrefix) |
static Delete |
Delete.create(Query<?> query,
String prefix,
String from,
String alias,
boolean safePrefix) |
static Update |
Update.create(Query<?> query,
String prefix,
String tableName,
String alias,
boolean safePrefix) |
static Select |
Select.create(Query<?> query,
String prefix,
String from,
String alias,
boolean safePrefix) |
static Join |
Join.inner(Query<?> query,
String from) |
static Join |
Join.inner(Query<?> query,
String from,
boolean safePrefix) |
static Join |
Join.inner(Query<?> query,
String prefix,
String from) |
static Join |
Join.inner(Query<?> query,
String prefix,
String from,
boolean safePrefix) |
static Join |
Join.left(Query<?> query,
String from) |
static Join |
Join.left(Query<?> query,
String from,
boolean safePrefix) |
static Join |
Join.left(Query<?> query,
String prefix,
String from) |
static Join |
Join.left(Query<?> query,
String prefix,
String from,
boolean safePrefix) |
static Join |
Join.right(Query<?> query,
String from) |
static Join |
Join.right(Query<?> query,
String from,
boolean safePrefix) |
static Join |
Join.right(Query<?> query,
String prefix,
String from) |
static Join |
Join.right(Query<?> query,
String prefix,
String from,
boolean safePrefix) |
Constructor and Description |
---|
FieldCondition(Query<?> query,
String fieldName) |
FieldCondition(Query<?> query,
String prefix,
String fieldName) |
Copyright © 2022. All rights reserved.