Lines Matching refs:indx
350 int query_len, indx; in PHP_FUNCTION() local
420 indx = birdstep_add_result(list,res,conn); in PHP_FUNCTION()
421 RETURN_LONG(indx); in PHP_FUNCTION()
469 SWORD indx = -1; in PHP_FUNCTION() local
482 indx = Z_LVAL_PP(col); in PHP_FUNCTION()
487 indx = i; in PHP_FUNCTION()
491 if ( indx < 0 ) { in PHP_FUNCTION()
496 if ( indx < 0 || indx >= res->numcols ) { in PHP_FUNCTION()
516 switch ( res->values[indx].valtype ) { in PHP_FUNCTION()
523 if ( !res->values[indx].value ) { in PHP_FUNCTION()
524 res->values[indx].value = emalloc(4096); in PHP_FUNCTION()
526 stat = SQLGetData(res->hstmt,indx+1,sql_c_type, in PHP_FUNCTION()
527 res->values[indx].value,4095,&res->values[indx].vallen); in PHP_FUNCTION()
539 if ( res->values[indx].valtype == SQL_LONGVARCHAR ) { in PHP_FUNCTION()
540 RETURN_STRING(res->values[indx].value,TRUE); in PHP_FUNCTION()
542 RETURN_LONG((long)res->values[indx].value); in PHP_FUNCTION()
545 if ( res->values[indx].value != NULL ) { in PHP_FUNCTION()
546 RETURN_STRING(res->values[indx].value,TRUE); in PHP_FUNCTION()
669 SWORD indx; in PHP_FUNCTION() local
677 indx = col; in PHP_FUNCTION()
678 if ( indx < 0 || indx >= res->numcols ) { in PHP_FUNCTION()
682 RETURN_STRING(res->values[indx].name,TRUE); in PHP_FUNCTION()