MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / isCursorBased

Method isCursorBased

src/dsql/DsqlStatements.h:93–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91 void release();
92
93 bool isCursorBased() const
94 {
95 switch (type)
96 {
97 case TYPE_SELECT:
98 case TYPE_SELECT_BLOCK:
99 case TYPE_SELECT_UPD:
100 case TYPE_RETURNING_CURSOR:
101 return true;
102 }
103
104 return false;
105 }
106
107 Type getType() const { return type; }
108 void setType(Type value) { type = value; }

Callers 7

DSQL_executeFunction · 0.80
DSQL_free_statementFunction · 0.80
DSQL_execute_immediateFunction · 0.80
fetchMethod · 0.80
openCursorMethod · 0.80
executeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected