Searched refs:ori_str (Results 1 - 1 of 1) sorted by relevance
| /PHP_5_4/ext/pdo_pgsql/ |
| H A D | pgsql_statement.c | 388 char *ori_str = NULL; local 393 case PDO_FETCH_ORI_NEXT: spprintf(&ori_str, 0, "NEXT"); break; 394 case PDO_FETCH_ORI_PRIOR: spprintf(&ori_str, 0, "BACKWARD"); break; 395 case PDO_FETCH_ORI_FIRST: spprintf(&ori_str, 0, "FIRST"); break; 396 case PDO_FETCH_ORI_LAST: spprintf(&ori_str, 0, "LAST"); break; 397 case PDO_FETCH_ORI_ABS: spprintf(&ori_str, 0, "ABSOLUTE %ld", offset); break; 398 case PDO_FETCH_ORI_REL: spprintf(&ori_str, 0, "RELATIVE %ld", offset); break; 403 spprintf(&q, 0, "FETCH %s FROM %s", ori_str, S->cursor_name); 404 efree(ori_str);
|
Completed in 3 milliseconds