Qore SqlUtil Module Reference
1.1
|
This is the complete list of members for SqlUtil::Table, including all inherited members.
addCheckConstraint(string cname, string src, *hash opt, *reference sql) | SqlUtil::Table | |
addColumn(string cname, hash opt, bool nullable=True, *reference lsql) | SqlUtil::Table | |
addForeignConstraint(string cname, softlist cols, string table, *softlist tcols, *hash opt, *reference sql) | SqlUtil::Table | |
addIndex(string iname, bool unique, softlist cols, *hash opt, *reference sql) | SqlUtil::Table | |
addPrimaryKey(string cname, softlist cols, *hash opt, *reference sql) | SqlUtil::Table | |
addTrigger(string tname, string src, *hash opt, *reference lsql) | SqlUtil::Table | |
addUniqueConstraint(string cname, softlist cols, *hash opt, *reference sql) | SqlUtil::Table | |
cache(*hash opts) | SqlUtil::Table | |
clear() | SqlUtil::Table | |
commit() | SqlUtil::Table | |
constructor(AbstractDatasource ds, string name, *hash opts) | SqlUtil::Table | |
constructor(string ds, string name, *hash opts) | SqlUtil::Table | |
constructor(hash ds, string name, *hash opts) | SqlUtil::Table | |
constructor(AbstractDatasource ds, hash desc, string name, *hash opts) | SqlUtil::Table | |
create(*hash opt) | SqlUtil::Table | |
createNoCommit(*hash opt) | SqlUtil::Table | |
del(*hash cond, *reference sql) | SqlUtil::Table | |
del(*hash cond, *hash opt) | SqlUtil::Table | |
delNoCommit(*hash cond, *reference sql) | SqlUtil::Table | |
delNoCommit(*hash cond, *hash opt) | SqlUtil::Table | |
describe() | SqlUtil::Table | |
drop(*hash opt) | SqlUtil::Table | |
dropColumn(string cname, *reference lsql) | SqlUtil::Table | |
dropConstraint(string cname, *reference sql) | SqlUtil::Table | |
dropForeignConstraint(string cname, *reference sql) | SqlUtil::Table | |
dropIndex(string iname, *reference sql) | SqlUtil::Table | |
dropNoCommit(*hash opt) | SqlUtil::Table | |
dropPrimaryKey(*reference lsql) | SqlUtil::Table | |
dropTrigger(string tname, *reference sql) | SqlUtil::Table | |
empty() | SqlUtil::Table | |
emptyData() | SqlUtil::Table | |
find(any id) | SqlUtil::Table | |
find(list ids) | SqlUtil::Table | |
find(hash row) | SqlUtil::Table | |
findAll(*hash cond) | SqlUtil::Table | |
findSingle(*hash cond) | SqlUtil::Table | |
findUniqueConstraint(string name) | SqlUtil::Table | |
getAddCheckConstraintSql(string cname, string src, *hash copt, *hash opt) | SqlUtil::Table | |
getAddColumnSql(string cname, hash copt, bool nullable=True, *hash opt) | SqlUtil::Table | |
getAddForeignConstraintSql(string cname, softlist cols, string table, *softlist tcols, *hash fkopt, *hash opt) | SqlUtil::Table | |
getAddIndexSql(string iname, bool unique, softlist cols, *hash ixopt, *hash opt) | SqlUtil::Table | |
getAddPrimaryKeySql(string pkname, softlist cols, *hash pkopt, *hash opt) | SqlUtil::Table | |
getAddTriggerSql(string tname, string src, *hash topt, *hash opt) | SqlUtil::Table | |
getAddUniqueConstraintSql(string cname, softlist cols, *hash ukopt, *hash opt) | SqlUtil::Table | |
getAlignSql(AbstractTable table, *hash opt) | SqlUtil::Table | |
getAlignSql(Table table, *hash opt) | SqlUtil::Table | |
getAlignSqlString(AbstractTable table, *hash opt) | SqlUtil::Table | |
getAlignSqlString(Table table, *hash opt) | SqlUtil::Table | |
getConstraints() | SqlUtil::Table | |
getCreateConstraintsSql(*hash opt) | SqlUtil::Table | |
getCreateForeignConstraintsSql(*hash opt) | SqlUtil::Table | |
getCreateIndexesSql(*hash opt) | SqlUtil::Table | |
getCreateMiscSql(*hash opt) | SqlUtil::Table | |
getCreatePrimaryKeySql(*hash opt) | SqlUtil::Table | |
getCreateSql(*hash opt) | SqlUtil::Table | |
getCreateSqlString(*hash opt) | SqlUtil::Table | |
getCreateTableSql(*hash opt) | SqlUtil::Table | |
getCreateTriggersSql(*hash opt) | SqlUtil::Table | |
getDatasource() | SqlUtil::Table | |
getDriverName() | SqlUtil::Table | |
getDropColumnSql(string cname, *hash opt) | SqlUtil::Table | |
getDropConstraintIfExistsSql(string cname, *hash opt, *reference cref) | SqlUtil::Table | |
getDropConstraintSql(string cname, *hash opt) | SqlUtil::Table | |
getDropIndexSql(string iname, *hash opt) | SqlUtil::Table | |
getDropPrimaryKeySql(*hash opt) | SqlUtil::Table | |
getDropTriggerSql(string tname, *hash opt) | SqlUtil::Table | |
getForeignConstraints(*hash opt) | SqlUtil::Table | |
getIndexes() | SqlUtil::Table | |
getModifyColumnSql(string cname, hash copt, bool nullable=True, *hash opt) | SqlUtil::Table | |
getName() | SqlUtil::Table | |
getPrimaryKey() | SqlUtil::Table | |
getRenameColumnSql(string old_name, string new_name, *hash opt) | SqlUtil::Table | |
getRenameSql(string new_name, *hash opt) | SqlUtil::Table | |
getRowIterator(*hash sh, *reference sql) | SqlUtil::Table | |
getRowIterator(*hash sh, *hash opt) | SqlUtil::Table | |
getSelectSql(*hash sh, *reference args) | SqlUtil::Table | |
getSqlFromList(list l) | SqlUtil::Table | |
getSqlValue(any v) | SqlUtil::Table | |
getTable() | SqlUtil::Table | |
getTriggers() | SqlUtil::Table | |
getTruncateSql(*hash opt) | SqlUtil::Table | |
getUniqueConstraintIterator() | SqlUtil::Table | |
getUpsertClosure(hash example_row, int upsert_strategy=AbstractTable::UpsertAuto) | SqlUtil::Table | |
getUpsertClosureWithValidation(hash example_row, int upsert_strategy=AbstractTable::UpsertAuto) | SqlUtil::Table | |
inDb() | SqlUtil::Table | |
insert(hash row, *reference sql) | SqlUtil::Table | |
insert(hash row, *hash opt) | SqlUtil::Table | |
insertFromIterator(Qore::AbstractIterator i, *hash opt) | SqlUtil::Table | |
insertFromIteratorNoCommit(Qore::AbstractIterator i, *hash opt) | SqlUtil::Table | |
insertFromSelect(list cols, AbstractTable source, *hash sh, *reference sql) | SqlUtil::Table | |
insertFromSelect(list cols, AbstractTable source, *hash sh, *hash opt) | SqlUtil::Table | |
insertFromSelectNoCommit(list cols, AbstractTable source, *hash sh, *reference sql) | SqlUtil::Table | |
insertFromSelectNoCommit(list cols, AbstractTable source, *hash sh, *hash opt) | SqlUtil::Table | |
insertNoCommit(hash row, *reference sql) | SqlUtil::Table | |
insertNoCommit(hash row, *hash opt) | SqlUtil::Table | |
methodGate(string meth) | SqlUtil::Table | |
modifyColumn(string cname, hash opt, bool nullable=True, *reference lsql) | SqlUtil::Table | |
removeForeignConstraint(string cname) | SqlUtil::Table | |
rename(string new_name, *reference sql, *Tables table_cache) | SqlUtil::Table | |
renameColumn(string old_name, string new_name, reference sql) | SqlUtil::Table | |
renameConstraint(string old_name, string new_name, reference lsql) | SqlUtil::Table | |
renameIndex(string old_name, string new_name, reference sql) | SqlUtil::Table | |
rollback() | SqlUtil::Table | |
rowCount() | SqlUtil::Table | |
select(*hash sh, *reference sql) | SqlUtil::Table | |
select(*hash sh, *hash opt) | SqlUtil::Table | |
selectRow(*hash sh, *reference sql) | SqlUtil::Table | |
selectRow(*hash sh, *hash opt) | SqlUtil::Table | |
selectRows(*hash sh, *reference sql) | SqlUtil::Table | |
selectRows(*hash sh, *hash opt) | SqlUtil::Table | |
setDatasource(AbstractDatasource nds) | SqlUtil::Table | |
setupTable(hash desc, *hash opt) | SqlUtil::Table | |
t | SqlUtil::Table | private |
truncate() | SqlUtil::Table | |
truncateNoCommit() | SqlUtil::Table | |
tryExec(string sql) | SqlUtil::Table | |
tryExecArgs(string sql, *softlist args) | SqlUtil::Table | |
tryExecRaw(string sql) | SqlUtil::Table | |
update(hash set, *hash cond, *reference sql) | SqlUtil::Table | |
update(hash set, *hash cond, *hash opt) | SqlUtil::Table | |
updateNoCommit(hash set, *hash cond, *reference sql) | SqlUtil::Table | |
updateNoCommit(hash set, *hash cond, *hash opt) | SqlUtil::Table | |
upsert(hash row, int upsert_strategy=AbstractTable::UpsertAuto) | SqlUtil::Table | |
upsertFromIterator(Qore::AbstractIterator i, int upsert_strategy=AbstractTable::UpsertAuto, *hash opt) | SqlUtil::Table | |
upsertFromIteratorNoCommit(Qore::AbstractIterator i, int upsert_strategy=AbstractTable::UpsertAuto, *hash opt) | SqlUtil::Table | |
upsertFromSelect(AbstractTable src, *hash sh, int upsert_strategy=AbstractTable::UpsertAuto, *hash opt) | SqlUtil::Table | |
upsertFromSelect(Table src, *hash sh, int upsert_strategy=AbstractTable::UpsertAuto, *hash opt) | SqlUtil::Table | |
upsertFromSelectNoCommit(AbstractTable src, *hash sh, int upsert_strategy=AbstractTable::UpsertAuto, *hash opt) | SqlUtil::Table | |
upsertFromSelectNoCommit(Table src, *hash sh, int upsert_strategy=AbstractTable::UpsertAuto, *hash opt) | SqlUtil::Table | |
upsertNoCommit(hash row, int upsert_strategy=AbstractTable::UpsertAuto) | SqlUtil::Table |