Home
last modified time | relevance | path

Searched refs:ori_str (Results 1 – 1 of 1) sorted by relevance

/PHP-5.5/ext/pdo_pgsql/
H A Dpgsql_statement.c389 char *ori_str = NULL; in pgsql_stmt_fetch() local
394 case PDO_FETCH_ORI_NEXT: spprintf(&ori_str, 0, "NEXT"); break; in pgsql_stmt_fetch()
395 case PDO_FETCH_ORI_PRIOR: spprintf(&ori_str, 0, "BACKWARD"); break; in pgsql_stmt_fetch()
396 case PDO_FETCH_ORI_FIRST: spprintf(&ori_str, 0, "FIRST"); break; in pgsql_stmt_fetch()
397 case PDO_FETCH_ORI_LAST: spprintf(&ori_str, 0, "LAST"); break; in pgsql_stmt_fetch()
398 case PDO_FETCH_ORI_ABS: spprintf(&ori_str, 0, "ABSOLUTE %ld", offset); break; in pgsql_stmt_fetch()
399 case PDO_FETCH_ORI_REL: spprintf(&ori_str, 0, "RELATIVE %ld", offset); break; in pgsql_stmt_fetch()
404 spprintf(&q, 0, "FETCH %s FROM %s", ori_str, S->cursor_name); in pgsql_stmt_fetch()
405 efree(ori_str); in pgsql_stmt_fetch()

Completed in 6 milliseconds