Package | Description |
---|---|
com.hfg.sql | |
com.hfg.sql.jdbc |
JDBC4-compatible classes for database access.
|
com.hfg.sql.jdbc.postgresql | |
com.hfg.sql.table | |
com.hfg.sql.table.field |
Modifier and Type | Method and Description |
---|---|
SQLQuery |
SQLQuery.addGroupBy(DatabaseCol inValue) |
SQLQuery |
SQLQuery.addSelect(DatabaseCol inColumn) |
static Double |
SQLUtil.getDouble(ResultSet inResultSet,
DatabaseCol inColumn) |
static Float |
SQLUtil.getFloat(ResultSet inResultSet,
DatabaseCol inColumn) |
static Integer |
SQLUtil.getInteger(ResultSet inResultSet,
DatabaseCol inColumn) |
static Long |
SQLUtil.getLong(ResultSet inResultSet,
DatabaseCol inColumn) |
Modifier and Type | Method and Description |
---|---|
Integer |
JDBCResultSet.findColumn(DatabaseCol inCol)
Maps the given
ResultSet column label to its
ResultSet column index. |
abstract Long |
RDBMS.getLastGeneratedId(Connection inConn,
DatabaseCol inIdCol) |
Modifier and Type | Method and Description |
---|---|
Long |
PostgreSQL.getLastGeneratedId(Connection inConn,
DatabaseCol inIdCol) |
Modifier and Type | Method and Description |
---|---|
DatabaseCol |
DatabaseCol.clone() |
DatabaseCol |
DatabaseTable.getCol(String inColName) |
DatabaseCol |
DatabaseRow.getIdCol() |
DatabaseCol |
DatabaseTable.getIdCol() |
DatabaseCol |
DatabaseCol.setAlias(String inValue) |
DatabaseCol |
DatabaseCol.setIsId(boolean inValue) |
DatabaseCol |
DatabaseCol.setRetrievedByDefault(boolean inValue) |
DatabaseCol |
DatabaseCol.setSequence(DatabaseSequence inValue) |
DatabaseCol |
DatabaseCol.setTable(DatabaseTable inValue) |
DatabaseCol |
DatabaseCol.tag(String inValue) |
Modifier and Type | Method and Description |
---|---|
List<DatabaseCol> |
DatabaseTable.getCols() |
Collection<DatabaseCol> |
DatabaseTable.getTaggedCols(String inTag) |
Modifier and Type | Method and Description |
---|---|
void |
DatabaseTable.addCol(DatabaseCol inCol) |
protected DatabaseField |
DatabaseRow.allocateField(DatabaseCol inCol) |
protected DatabaseField |
DatabaseRow.allocateField(DatabaseCol inCol,
Object inValue) |
protected DatabaseField |
DatabaseRow.allocateField(DatabaseCol inCol,
ResultSet inResultSet) |
int |
DatabaseCol.compareTo(DatabaseCol inObj2) |
DatabaseField |
DatabaseRow.getField(DatabaseCol inCol) |
boolean |
DatabaseRow.isDirty(DatabaseCol inColumn)
Indicates whether the specified field is dirty or not.
|
Modifier and Type | Method and Description |
---|---|
DatabaseCol |
DatabaseField.getCol() |
jataylor@hairyfatguy.com