Home
last modified time | relevance | path

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

/PHP-5.5/ext/odbc/
H A Dphp_odbc.c1498 char *cursorname; in PHP_FUNCTION() local
1514 cursorname = emalloc(max_len + 1); in PHP_FUNCTION()
1515 rc = SQLGetCursorName(result->stmt,cursorname,(SQLSMALLINT)max_len,&len); in PHP_FUNCTION()
1526 snprintf(cursorname, max_len+1, "php_curs_%d", (int)result->stmt); in PHP_FUNCTION()
1527 if (SQLSetCursorName(result->stmt,cursorname,SQL_NTS) != SQL_SUCCESS) { in PHP_FUNCTION()
1531 RETVAL_STRING(cursorname,1); in PHP_FUNCTION()
1538 RETVAL_STRING(cursorname,1); in PHP_FUNCTION()
1540 efree(cursorname); in PHP_FUNCTION()

Completed in 22 milliseconds