Qore Programming Language Reference Manual 1.14.2
Loading...
Searching...
No Matches
ql_context.dox.h
1
3namespace Qore {
7
9
26bool cx_first();
27
29
46bool cx_last();
47
49
65int cx_pos();
66
68
85
87
106auto cx_value(string key);
107
109}
auto cx_value(string key)
Returns the current value of the given column while iterating a context statement.
int cx_total()
Returns the total number of rows within the active context statement.
bool cx_last()
Returns True if currently iterating the last element in a context statement, False if not.
bool cx_first()
Returns True if currently iterating the first element in a context statement, False if not.
int cx_pos()
Returns the current row number within the active context statement (starting from 0)
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3