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; in pgsql_stmt_fetch() local 393 case PDO_FETCH_ORI_NEXT: spprintf(&ori_str, 0, "NEXT"); break; in pgsql_stmt_fetch() 394 case PDO_FETCH_ORI_PRIOR: spprintf(&ori_str, 0, "BACKWARD"); break; in pgsql_stmt_fetch() 395 case PDO_FETCH_ORI_FIRST: spprintf(&ori_str, 0, "FIRST"); break; in pgsql_stmt_fetch() 396 case PDO_FETCH_ORI_LAST: spprintf(&ori_str, 0, "LAST"); break; in pgsql_stmt_fetch() 397 case PDO_FETCH_ORI_ABS: spprintf(&ori_str, 0, "ABSOLUTE %ld", offset); break; in pgsql_stmt_fetch() 398 case PDO_FETCH_ORI_REL: spprintf(&ori_str, 0, "RELATIVE %ld", offset); break; in pgsql_stmt_fetch() 403 spprintf(&q, 0, "FETCH %s FROM %s", ori_str, S->cursor_name); in pgsql_stmt_fetch() 404 efree(ori_str); in pgsql_stmt_fetch()
|
Completed in 5 milliseconds