![]() |
Qore SqlUtil Module Reference 1.9.3
|
Functions | |
| hash< InsertOperatorInfo > | SqlUtil::iop_seq (string arg) |
| returns an InsertOperatorInfo hash for retrieving the value of the given sequence in insert queries | |
| hash< InsertOperatorInfo > | SqlUtil::iop_seq_currval (string arg) |
| returns an InsertOperatorInfo hash for retrieving the current value of the given sequence in insert queries | |
| hash< InsertOperatorInfo > | SqlUtil::make_iop (string iop, auto arg) |
These are functions that can be used to give special values in insert queries
| hash< InsertOperatorInfo > SqlUtil::iop_seq | ( | string | arg | ) |
returns an InsertOperatorInfo hash for retrieving the value of the given sequence in insert queries
| arg | the name of the sequence whose value should be inserted into the column |
| hash< InsertOperatorInfo > SqlUtil::iop_seq_currval | ( | string | arg | ) |
returns an InsertOperatorInfo hash for retrieving the current value of the given sequence in insert queries
| arg | the name of the sequence whose current value should be inserted into the column |
| hash< InsertOperatorInfo > SqlUtil::make_iop | ( | string | iop, |
| auto | arg ) |
returns an InsertOperatorInfo hash
| iop | the value operator (one of SQL Insert Operators) |
| arg | the argument to the operator |