Home
last modified time | relevance | path

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

/PHP-5.4/ext/odbc/
H A Dphp_odbc.c1481 char *cursorname; in PHP_FUNCTION() local
1497 cursorname = emalloc(max_len + 1); in PHP_FUNCTION()
1498 rc = SQLGetCursorName(result->stmt,cursorname,(SQLSMALLINT)max_len,&len); in PHP_FUNCTION()
1509 snprintf(cursorname, max_len+1, "php_curs_%d", (int)result->stmt); in PHP_FUNCTION()
1510 if (SQLSetCursorName(result->stmt,cursorname,SQL_NTS) != SQL_SUCCESS) { in PHP_FUNCTION()
1514 RETVAL_STRING(cursorname,1); in PHP_FUNCTION()
1521 RETVAL_STRING(cursorname,1); in PHP_FUNCTION()
1523 efree(cursorname); in PHP_FUNCTION()

Completed in 13 milliseconds