cursorname       1508 ext/odbc/php_odbc.c 	char *cursorname;
cursorname       1526 ext/odbc/php_odbc.c 		cursorname = emalloc(max_len + 1);
cursorname       1527 ext/odbc/php_odbc.c 		rc = SQLGetCursorName(result->stmt,cursorname,(SQLSMALLINT)max_len,&len);
cursorname       1538 ext/odbc/php_odbc.c 				snprintf(cursorname, max_len+1, "php_curs_" ZEND_ULONG_FMT, (zend_ulong)result->stmt);
cursorname       1539 ext/odbc/php_odbc.c 				if (SQLSetCursorName(result->stmt,cursorname,SQL_NTS) != SQL_SUCCESS) {
cursorname       1543 ext/odbc/php_odbc.c 					RETVAL_STRING(cursorname);
cursorname       1550 ext/odbc/php_odbc.c 			RETVAL_STRING(cursorname);
cursorname       1552 ext/odbc/php_odbc.c 		efree(cursorname);