Home
last modified time | relevance | path

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

/PHP-7.1/ext/odbc/
H A Dphp_odbc.c1518 char *cursorname; in PHP_FUNCTION() local
1536 cursorname = emalloc(max_len + 1); in PHP_FUNCTION()
1537 rc = SQLGetCursorName(result->stmt,cursorname,(SQLSMALLINT)max_len,&len); in PHP_FUNCTION()
1548 snprintf(cursorname, max_len+1, "php_curs_" ZEND_ULONG_FMT, (zend_ulong)result->stmt); in PHP_FUNCTION()
1549 if (SQLSetCursorName(result->stmt,cursorname,SQL_NTS) != SQL_SUCCESS) { in PHP_FUNCTION()
1553 RETVAL_STRING(cursorname); in PHP_FUNCTION()
1560 RETVAL_STRING(cursorname); in PHP_FUNCTION()
1562 efree(cursorname); in PHP_FUNCTION()

Completed in 10 milliseconds