Home
last modified time | relevance | path

Searched refs:cursor (Results 1 – 25 of 56) sorted by path

123

/PHP-7.4/
H A DNEWS467 . Fixed bug #64638 (Fetching resultsets from stored procedure with cursor
470 that use a cursor). (Nikita)
472 with a cursor). (Nikita)
/PHP-7.4/Zend/tests/
H A Dobject_property_ref_incdec.phpt7 $obj->cursor = 0;
8 $ref =& $obj->cursor;
10 $obj->cursor++;
11 var_dump($obj->cursor);
13 $obj->cursor--;
14 var_dump($obj->cursor);
/PHP-7.4/ext/date/lib/
H A Dparse_date.c87 #define YYCURSOR cursor
92 #define RET(i) {s->cur = cursor; return i;}
103 #define TIMELIB_HAVE_TZ() { s->cur = cursor; if (s->time->have_zone) { s->time->have_zone > 1 ? add…
105 #define TIMELIB_INIT s->cur = cursor; str = timelib_string(s); ptr = str
304 uchar *fill(Scanner *s, uchar *cursor){
311 cursor -= cnt;
320 cursor = &buf[cursor - s->bot];
332 return cursor;
884 uchar *cursor = s->cur; in scan() local
888 s->tok = cursor; in scan()
[all …]
H A Dparse_date.re85 #define YYCURSOR cursor
90 #define RET(i) {s->cur = cursor; return i;}
101 #define TIMELIB_HAVE_TZ() { s->cur = cursor; if (s->time->have_zone) { s->time->have_zone > 1 ? add…
103 #define TIMELIB_INIT s->cur = cursor; str = timelib_string(s); ptr = str
302 uchar *fill(Scanner *s, uchar *cursor){
309 cursor -= cnt;
318 cursor = &buf[cursor - s->bot];
330 return cursor;
882 uchar *cursor = s->cur;
886 s->tok = cursor;
[all …]
H A Dparse_iso_intervals.c53 #define YYCURSOR cursor
58 #define RET(i) {s->cur = cursor; return i;}
62 #define TIMELIB_INIT s->cur = cursor; str = timelib_string(s); ptr = str
171 uchar *cursor = s->cur; in scan() local
175 s->tok = cursor; in scan()
329 s->pos = cursor; s->line++; in scan()
H A Dparse_iso_intervals.re51 #define YYCURSOR cursor
56 #define RET(i) {s->cur = cursor; return i;}
60 #define TIMELIB_INIT s->cur = cursor; str = timelib_string(s); ptr = str
169 uchar *cursor = s->cur;
173 s->tok = cursor;
310 s->pos = cursor; s->line++;
362 /* init cursor */
/PHP-7.4/ext/dba/
H A Ddba_db2.c42 DBC *cursor; member
90 if (dba->cursor) in DBA_CLOSE_FUNC()
91 dba->cursor->c_close(dba->cursor); in DBA_CLOSE_FUNC()
150 if (dba->cursor) {
151 dba->cursor->c_close(dba->cursor);
152 dba->cursor = NULL;
156 if (dba->dbp->cursor(dba->dbp, NULL, &dba->cursor, 0)) {
158 if (dba->dbp->cursor(dba->dbp, NULL, &dba->cursor)) {
172 if (dba->cursor->c_get(dba->cursor, &gkey, &gval, DB_NEXT)
H A Ddba_db3.c54 DBC *cursor; member
104 data->cursor = NULL;
123 if (dba->cursor) dba->cursor->c_close(dba->cursor);
185 if (dba->cursor) {
186 dba->cursor->c_close(dba->cursor);
189 dba->cursor = NULL;
190 if (dba->dbp->cursor(dba->dbp, NULL, &dba->cursor, 0) != 0) {
207 if (dba->cursor->c_get(dba->cursor, &gkey, &gval, DB_NEXT) == 0) {
H A Ddba_db4.c68 DBC *cursor; member
133 data->cursor = NULL;
152 if (dba->cursor) dba->cursor->c_close(dba->cursor);
228 if (dba->cursor) {
229 dba->cursor->c_close(dba->cursor);
232 dba->cursor = NULL;
233 if (dba->dbp->cursor(dba->dbp, NULL, &dba->cursor, 0) != 0) {
254 if (dba->cursor && dba->cursor->c_get(dba->cursor, &gkey, &gval, DB_NEXT) == 0) {
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic1920 # mean that the cursor should move either down or right when you press Return.
16524 # Type: X11 cursor
16527 0 string Xcur X11 cursor
21341 # displays number of icons and information for icon or cursor
21361 >>>0 ubelong 0x00000200 cursor resource
21367 # 1st cursor
21370 # display information of one cursor entry
21382 # display shared information of cursor or icon entry
24974 >8 string ACON \b, animated cursor
25028 >8 string ACON \b, animated cursor
[all …]
H A Dmagic私はガラスを食べられます1920 # mean that the cursor should move either down or right when you press Return.
16524 # Type: X11 cursor
16527 0 string Xcur X11 cursor
21341 # displays number of icons and information for icon or cursor
21361 >>>0 ubelong 0x00000200 cursor resource
21367 # 1st cursor
21370 # display information of one cursor entry
21382 # display shared information of cursor or icon entry
24974 >8 string ACON \b, animated cursor
25028 >8 string ACON \b, animated cursor
[all …]
/PHP-7.4/ext/json/
H A Djson_scanner.re26 #define YYCURSOR s->cursor
109 s->token = s->cursor;
210 s->str_start = s->cursor;
274 s->cursor = s->str_start;
305 s->str_start = s->cursor;
313 s->str_start = s->cursor;
322 s->str_start = s->cursor;
335 s->str_start = s->cursor;
341 switch (*s->cursor) {
359 esc = *s->cursor;
[all …]
H A Dphp_json_scanner.h28 php_json_ctype *cursor; /* cursor position */ member
/PHP-7.4/ext/mysqli/tests/
H A D067.phpt12 /* skip cursor test for versions < 50004 */
44 $mysql->query("DROP TABLE IF EXISTS cursor$i");
45 $mysql->query("CREATE TABLE cursor$i (a int not null) ENGINE=" . $engine);
46 $mysql->query("INSERT INTO cursor$i VALUES (1),(2),(3),(4),(5),(6)");
47 $stmt[$i] = open_cursor($mysql, "SELECT a FROM cursor$i");
74 if (!mysqli_query($link, sprintf("DROP TABLE IF EXISTS cursor%d", $i)))
H A Dbug77935.phpt2 Bug #77935: Crash in mysqlnd_fetch_stmt_row_cursor when calling an SP with a cursor
H A Dmysqli_stmt_get_result.phpt113 // get_result can be used in PS cursor mode
H A Dps_cursor_multiple_result_sets.phpt2 PS using cursor and returning multiple result sets
/PHP-7.4/ext/oci8/tests/
H A Db47243_1.phpt15 $s = oci_parse($c, "select cursor(select dummy from dual) from dual");
H A Db47243_2.phpt15 $s = oci_parse($c, "select cursor(select dummy from dual) from dual");
H A Db47243_3.phpt15 $s = oci_parse($c, "select cursor(select dummy from dual) from dual");
H A Dbug38173.phpt43 CURSOR( SELECT * FROM t2 ) as cursor
H A Dbug40415.phpt73 echo "Getting nested cursor\n";
82 echo "Test 1: Associate fetch of nested cursor\n";
85 echo "\nTest 2: fetchall of nested cursor\n";
98 Test 1: Associate fetch of nested cursor
99 Got row "11". Now getting nested cursor:
113 Got row "12". Now getting nested cursor:
127 Got row "13". Now getting nested cursor:
142 Test 2: fetchall of nested cursor
164 Getting nested cursor
177 Getting nested cursor
[all …]
H A Dbug42841.phpt49 $sql = "BEGIN bug42841_proc(:cursor); END;";
51 $cursor = oci_new_cursor($c);
52 oci_bind_by_name($stmt, ":cursor", $cursor, -1, OCI_B_CURSOR);
55 oci_execute($cursor);
62 oci_free_statement($cursor);
67 $sql = "BEGIN bug42841_proc(:cursor); END;";
69 $cursor = oci_new_cursor($c);
70 oci_bind_by_name($stmt, ":cursor", $cursor, -1, OCI_B_CURSOR);
73 oci_execute($cursor);
80 oci_free_statement($cursor);
[all …]
H A Dbug43492.phpt2 Bug #43492 (Nested cursor leaks)
32 While fetching data from a ref cursor, the parent statement needs to
34 not automatically released which causes a cursor leak.
43 $s = ociparse($c, 'select cursor(select * from bug43492_tab) c from bug43492_tab');
H A Dbug43492_2.phpt2 Bug #43492 (Nested cursor leaks after related bug #44206 fixed)
35 $s = ociparse($c, 'select cursor(select * from bug43492_tab) c from bug43492_tab');

Completed in 173 milliseconds

123