Lines Matching refs:mysqlnd_ps_fetch_functions

48 struct st_mysqlnd_perm_bind mysqlnd_ps_fetch_functions[MYSQL_TYPE_LAST + 1];  variable
360 memset(mysqlnd_ps_fetch_functions, 0, sizeof(mysqlnd_ps_fetch_functions)); in _mysqlnd_init_ps_fetch_subsystem()
361 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NULL].func = ps_fetch_null; in _mysqlnd_init_ps_fetch_subsystem()
362 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NULL].pack_len = 0; in _mysqlnd_init_ps_fetch_subsystem()
363 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NULL].php_type = IS_NULL; in _mysqlnd_init_ps_fetch_subsystem()
365 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TINY].func = ps_fetch_int8; in _mysqlnd_init_ps_fetch_subsystem()
366 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TINY].pack_len = 1; in _mysqlnd_init_ps_fetch_subsystem()
367 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TINY].php_type = IS_LONG; in _mysqlnd_init_ps_fetch_subsystem()
369 mysqlnd_ps_fetch_functions[MYSQL_TYPE_SHORT].func = ps_fetch_int16; in _mysqlnd_init_ps_fetch_subsystem()
370 mysqlnd_ps_fetch_functions[MYSQL_TYPE_SHORT].pack_len = 2; in _mysqlnd_init_ps_fetch_subsystem()
371 mysqlnd_ps_fetch_functions[MYSQL_TYPE_SHORT].php_type = IS_LONG; in _mysqlnd_init_ps_fetch_subsystem()
373 mysqlnd_ps_fetch_functions[MYSQL_TYPE_YEAR].func = ps_fetch_int16; in _mysqlnd_init_ps_fetch_subsystem()
374 mysqlnd_ps_fetch_functions[MYSQL_TYPE_YEAR].pack_len = 2; in _mysqlnd_init_ps_fetch_subsystem()
375 mysqlnd_ps_fetch_functions[MYSQL_TYPE_YEAR].php_type = IS_LONG; in _mysqlnd_init_ps_fetch_subsystem()
377 mysqlnd_ps_fetch_functions[MYSQL_TYPE_INT24].func = ps_fetch_int32; in _mysqlnd_init_ps_fetch_subsystem()
378 mysqlnd_ps_fetch_functions[MYSQL_TYPE_INT24].pack_len = 4; in _mysqlnd_init_ps_fetch_subsystem()
379 mysqlnd_ps_fetch_functions[MYSQL_TYPE_INT24].php_type = IS_LONG; in _mysqlnd_init_ps_fetch_subsystem()
381 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONG].func = ps_fetch_int32; in _mysqlnd_init_ps_fetch_subsystem()
382 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONG].pack_len = 4; in _mysqlnd_init_ps_fetch_subsystem()
383 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONG].php_type = IS_LONG; in _mysqlnd_init_ps_fetch_subsystem()
385 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONGLONG].func = ps_fetch_int64; in _mysqlnd_init_ps_fetch_subsystem()
386 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONGLONG].pack_len= 8; in _mysqlnd_init_ps_fetch_subsystem()
387 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONGLONG].php_type= IS_LONG; in _mysqlnd_init_ps_fetch_subsystem()
389 mysqlnd_ps_fetch_functions[MYSQL_TYPE_FLOAT].func = ps_fetch_float; in _mysqlnd_init_ps_fetch_subsystem()
390 mysqlnd_ps_fetch_functions[MYSQL_TYPE_FLOAT].pack_len = 4; in _mysqlnd_init_ps_fetch_subsystem()
391 mysqlnd_ps_fetch_functions[MYSQL_TYPE_FLOAT].php_type = IS_DOUBLE; in _mysqlnd_init_ps_fetch_subsystem()
393 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DOUBLE].func = ps_fetch_double; in _mysqlnd_init_ps_fetch_subsystem()
394 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DOUBLE].pack_len = 8; in _mysqlnd_init_ps_fetch_subsystem()
395 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DOUBLE].php_type = IS_DOUBLE; in _mysqlnd_init_ps_fetch_subsystem()
397 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TIME].func = ps_fetch_time; in _mysqlnd_init_ps_fetch_subsystem()
398 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TIME].pack_len = MYSQLND_PS_SKIP_RESULT_W_LEN; in _mysqlnd_init_ps_fetch_subsystem()
399 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TIME].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
401 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DATE].func = ps_fetch_date; in _mysqlnd_init_ps_fetch_subsystem()
402 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DATE].pack_len = MYSQLND_PS_SKIP_RESULT_W_LEN; in _mysqlnd_init_ps_fetch_subsystem()
403 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DATE].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
405 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NEWDATE].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
406 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NEWDATE].pack_len = MYSQLND_PS_SKIP_RESULT_W_LEN; in _mysqlnd_init_ps_fetch_subsystem()
407 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NEWDATE].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
409 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DATETIME].func = ps_fetch_datetime; in _mysqlnd_init_ps_fetch_subsystem()
410 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DATETIME].pack_len= MYSQLND_PS_SKIP_RESULT_W_LEN; in _mysqlnd_init_ps_fetch_subsystem()
411 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DATETIME].php_type= IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
413 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TIMESTAMP].func = ps_fetch_datetime; in _mysqlnd_init_ps_fetch_subsystem()
414 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TIMESTAMP].pack_len= MYSQLND_PS_SKIP_RESULT_W_LEN; in _mysqlnd_init_ps_fetch_subsystem()
415 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TIMESTAMP].php_type= IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
417 mysqlnd_ps_fetch_functions[MYSQL_TYPE_JSON].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
418 mysqlnd_ps_fetch_functions[MYSQL_TYPE_JSON].pack_len= MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
419 mysqlnd_ps_fetch_functions[MYSQL_TYPE_JSON].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
421 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TINY_BLOB].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
422 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TINY_BLOB].pack_len= MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
423 mysqlnd_ps_fetch_functions[MYSQL_TYPE_TINY_BLOB].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
425 mysqlnd_ps_fetch_functions[MYSQL_TYPE_BLOB].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
426 mysqlnd_ps_fetch_functions[MYSQL_TYPE_BLOB].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
427 mysqlnd_ps_fetch_functions[MYSQL_TYPE_BLOB].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
429 mysqlnd_ps_fetch_functions[MYSQL_TYPE_MEDIUM_BLOB].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
430 mysqlnd_ps_fetch_functions[MYSQL_TYPE_MEDIUM_BLOB].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
431 mysqlnd_ps_fetch_functions[MYSQL_TYPE_MEDIUM_BLOB].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
433 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONG_BLOB].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
434 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONG_BLOB].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
435 mysqlnd_ps_fetch_functions[MYSQL_TYPE_LONG_BLOB].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
437 mysqlnd_ps_fetch_functions[MYSQL_TYPE_BIT].func = ps_fetch_bit; in _mysqlnd_init_ps_fetch_subsystem()
438 mysqlnd_ps_fetch_functions[MYSQL_TYPE_BIT].pack_len = 8; in _mysqlnd_init_ps_fetch_subsystem()
439 mysqlnd_ps_fetch_functions[MYSQL_TYPE_BIT].php_type = IS_LONG; in _mysqlnd_init_ps_fetch_subsystem()
441 mysqlnd_ps_fetch_functions[MYSQL_TYPE_VAR_STRING].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
442 mysqlnd_ps_fetch_functions[MYSQL_TYPE_VAR_STRING].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
443 mysqlnd_ps_fetch_functions[MYSQL_TYPE_VAR_STRING].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
445 mysqlnd_ps_fetch_functions[MYSQL_TYPE_VARCHAR].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
446 mysqlnd_ps_fetch_functions[MYSQL_TYPE_VARCHAR].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
447 mysqlnd_ps_fetch_functions[MYSQL_TYPE_VARCHAR].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
449 mysqlnd_ps_fetch_functions[MYSQL_TYPE_STRING].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
450 mysqlnd_ps_fetch_functions[MYSQL_TYPE_STRING].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
451 mysqlnd_ps_fetch_functions[MYSQL_TYPE_STRING].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
453 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DECIMAL].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
454 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DECIMAL].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
455 mysqlnd_ps_fetch_functions[MYSQL_TYPE_DECIMAL].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
457 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NEWDECIMAL].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
458 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NEWDECIMAL].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
459 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NEWDECIMAL].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
461 mysqlnd_ps_fetch_functions[MYSQL_TYPE_ENUM].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
462 mysqlnd_ps_fetch_functions[MYSQL_TYPE_ENUM].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
463 mysqlnd_ps_fetch_functions[MYSQL_TYPE_ENUM].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
465 mysqlnd_ps_fetch_functions[MYSQL_TYPE_SET].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
466 mysqlnd_ps_fetch_functions[MYSQL_TYPE_SET].pack_len = MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
467 mysqlnd_ps_fetch_functions[MYSQL_TYPE_SET].php_type = IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()
469 mysqlnd_ps_fetch_functions[MYSQL_TYPE_GEOMETRY].func = ps_fetch_string; in _mysqlnd_init_ps_fetch_subsystem()
470 mysqlnd_ps_fetch_functions[MYSQL_TYPE_GEOMETRY].pack_len= MYSQLND_PS_SKIP_RESULT_STR; in _mysqlnd_init_ps_fetch_subsystem()
471 mysqlnd_ps_fetch_functions[MYSQL_TYPE_GEOMETRY].php_type= IS_STRING; in _mysqlnd_init_ps_fetch_subsystem()