Home
last modified time | relevance | path

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

/PHP-7.3/ext/odbc/
H A Dphp_odbc.c1516 char *cursorname; in PHP_FUNCTION() local
1534 cursorname = emalloc(max_len + 1); in PHP_FUNCTION()
1535 rc = SQLGetCursorName(result->stmt,cursorname,(SQLSMALLINT)max_len,&len); in PHP_FUNCTION()
1546 snprintf(cursorname, max_len+1, "php_curs_" ZEND_ULONG_FMT, (zend_ulong)result->stmt); in PHP_FUNCTION()
1547 if (SQLSetCursorName(result->stmt,cursorname,SQL_NTS) != SQL_SUCCESS) { in PHP_FUNCTION()
1551 RETVAL_STRING(cursorname); in PHP_FUNCTION()
1558 RETVAL_STRING(cursorname); in PHP_FUNCTION()
1560 efree(cursorname); in PHP_FUNCTION()

Completed in 9 milliseconds