Qore Programming Language Reference Manual  0.8.9
 All Classes Namespaces Functions Variables Groups Pages
ql_context.dox.h
1 
3 namespace Qore {
7 
9 
26 bool cx_first();
27 
29 
46 bool cx_last();
47 
49 
65 int cx_pos();
66 
68 
84 int cx_total();
85 
87 
106 any cx_value(string key);
107 
109 };
bool cx_last()
Returns True if currently iterating the last element in a context statement, False if not...
any cx_value(string key)
Returns the current value of the given column while iterating a context statement.
int cx_pos()
Returns the current row number within the active context statement (starting from 0) ...
bool cx_first()
Returns True if currently iterating the first element in a context statement, False if not...
int cx_total()
Returns the total number of rows within the active context statement.