cursorname       1502 ext/odbc/php_odbc.c 	char *cursorname;
cursorname       1518 ext/odbc/php_odbc.c 		cursorname = emalloc(max_len + 1);
cursorname       1519 ext/odbc/php_odbc.c 		rc = SQLGetCursorName(result->stmt,cursorname,(SQLSMALLINT)max_len,&len);
cursorname       1530 ext/odbc/php_odbc.c 				snprintf(cursorname, max_len+1, "php_curs_%d", (int)result->stmt);
cursorname       1531 ext/odbc/php_odbc.c 				if (SQLSetCursorName(result->stmt,cursorname,SQL_NTS) != SQL_SUCCESS) {
cursorname       1535 ext/odbc/php_odbc.c 					RETVAL_STRING(cursorname,1);
cursorname       1542 ext/odbc/php_odbc.c 			RETVAL_STRING(cursorname,1);
cursorname       1544 ext/odbc/php_odbc.c 		efree(cursorname);