Package | Description |
---|---|
com.hfg.sql | |
com.hfg.sql.table |
Modifier and Type | Class and Description |
---|---|
class |
FromClause
Container for a SQL FROM clause.
|
class |
JoinClause
Container for a SQL JOIN clause.
|
class |
LimitClause
Container for a SQL limit clause.
|
class |
OffsetClause
Container for a SQL offset clause.
|
class |
OrderByClause
Container for a SQL order by clause.
|
class |
WhereClause
Container for a SQL where clause.
|
Modifier and Type | Method and Description |
---|---|
SQLCmd |
SQLCmd.addClause(SQLClause inValue) |
SQLDelete |
SQLDelete.addClause(SQLClause inValue) |
SQLQuery |
SQLQuery.addClause(SQLClause inValue) |
SQLUpdate |
SQLUpdate.addClause(SQLClause inValue) |
Modifier and Type | Method and Description |
---|---|
SQLCmd |
SQLCmd.addClauses(java.util.Collection<SQLClause> inClauses) |
SQLQuery |
SQLQuery.addClauses(java.util.Collection<SQLClause> inClauses) |
static int |
SQLUtil.getRowCount(java.sql.Connection inConn,
DatabaseTable inTable,
java.util.Collection<SQLClause> inClauses)
A convenience method for getting a count of rows that meet a specific criteria.
|
Modifier and Type | Method and Description |
---|---|
T |
DatabaseTable.getRow(java.sql.Connection inConn,
SQLClause inClause) |
java.util.List<T> |
DatabaseTable.getRows(java.sql.Connection inConn,
SQLClause... inClauses) |
java.util.List<T> |
DatabaseTable.getRows(java.sql.Connection inConn,
SQLClause inClause) |
Modifier and Type | Method and Description |
---|---|
T |
DatabaseTable.getRow(java.sql.Connection inConn,
java.util.List<SQLClause> inSQLClauses) |
java.util.List<T> |
DatabaseTable.getRows(java.sql.Connection inConn,
java.util.List<SQLClause> inSQLClauses) |
[email protected]