_ConnectionPtr是智能指针,在析构时会自动释放。
你这里pConn.Release(); 释放了,导致后面会重复释放出错。而且你还没关闭连接。
try
{
CString strSQL = _T("select * from student");
pConn->Execute(_bstr_t(strSQL),NULL,adCmdText);
pConn->Close();
AfxMessageBox(_T("SQL语句执行成功!"));
}
catch(_com_error e)
{
pConn->Close();
AfxMessageBox(_T("SQL语句执行失败!"));
}