关于VC6.0用ADO连SQL数据库的问题
照书上写了一个程序,但定义只能指针出错。调试出现expression cannot be evaluated.请高手指点一、二。这个程序错误我改好几天了,还是不对。该查的资料都查了。现在快绝望了。
回复 2楼 cnfarer
我把连接SQL2005的程序贴出来HRESULT hr;
try
{
hr=m_pConnection.CreateInstance("ADODB.Connection");
// m_pRecordset.CreateInstance("ADODB.Connection");
if(SUCCEEDED(hr))
{
hr=m_pConnection->Open("driver=SQL Server;Data Source=SQL","sa","123456",adModeUnknown);
}
}
catch(_com_error e)
{
CString errormessage;
errormessage.Format("连接数据库失败!\r\n错误信息:%s",e.ErrorMessage());
AfxMessageBox(errormessage);
}
// TODO: Add extra initialization here
相信应该不难看懂吧
调试的时候在this中出现Expression cannot be evaluated
请高手指教。