| 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; } |
no outgoing calls
no test coverage detected