Hi,
I have a problem using VC++ and myODBC.
When I'm trying to update a record I receive the ODBC exception :
No cursor name available
State:S1015,Native:0,Origin:[TCX][MyODBC]
I'm running mySQL 3.23.43 and myODBC 2.50.39-nt.
When tracing into the MFC library, the exception arises after a call to
SQLGetCursorName(..) in the MFC file DBCORE.CPP
SWORD nLength = _countof(szCursorName)-1;
AFX_SQL_SYNC(::SQLGetCursorName(m_hstmt,
szCursorName, _countof(szCursorName), &nLength));
if (!Check(nRetCode))
ThrowDBException(nRetCode);