set the provided GraphCtx for access through the QueryCtx
| 196 | |
| 197 | // set the provided GraphCtx for access through the QueryCtx |
| 198 | void QueryCtx_SetGraphCtx |
| 199 | ( |
| 200 | GraphContext *gc |
| 201 | ) { |
| 202 | ASSERT(gc != NULL); |
| 203 | QueryCtx *ctx = _QueryCtx_GetCreateCtx(); |
| 204 | ctx->gc = gc; |
| 205 | } |
| 206 | |
| 207 | // set the resultset |
| 208 | void QueryCtx_SetResultSet |