VS2013 用ADO 访问Access 数据库 20
AfxOleInit();//创建ADO连接m_pConnection.CreateInstance(__uuidof(Connection));char*strSQL;...
AfxOleInit();
//创建ADO连接
m_pConnection.CreateInstance(__uuidof(Connection));
char* strSQL;
strSQL = "Provider=Microsoft.Ace.OleDb.12.0; Data Source=oder.accdb;";
//在ADO操作中建议语句中要常用try...catch()来捕获错误信息,
//因为它有时会经常出现一些想不到的错误songMp3
try
{
//打开mdb库perConnection.mdb
m_pConnection->Open((_bstr_t)strSQL, "", "", adModeUnknown);
}
catch (_com_error e)
{
CString strError;
strError.Format(_T("警告:打开连接发生异常。 错误信息: %s"), e.ErrorMessage());
AfxMessageBox(strError);
return FALSE;
}
然后在:
try
{
int _iGroupID;
m_pRecordset.CreateInstance(__uuidof(Recordset));
_ConnectionPtr pCon = ((CPttApp*)AfxGetApp())->m_pConnection;
m_pRecordset->Open("select * from Order", pCon.GetInterfacePtr(), adOpenDynamic, adLockOptimistic, adCmdText);
while (!m_pRecordset->adoEOF)
{
_iGroupID = m_pRecordset->GetCollect("GroupID");
m_pRecordset->MoveNext();
}
}
catch (_com_error e)
{
CString strError;
strError.Format(_T("警告:执行插入操作失败。 错误信息: %s"), e.ErrorMessage());
AfxMessageBox(strError);
return;
}
报异常:
IDispatch error #3092 展开
//创建ADO连接
m_pConnection.CreateInstance(__uuidof(Connection));
char* strSQL;
strSQL = "Provider=Microsoft.Ace.OleDb.12.0; Data Source=oder.accdb;";
//在ADO操作中建议语句中要常用try...catch()来捕获错误信息,
//因为它有时会经常出现一些想不到的错误songMp3
try
{
//打开mdb库perConnection.mdb
m_pConnection->Open((_bstr_t)strSQL, "", "", adModeUnknown);
}
catch (_com_error e)
{
CString strError;
strError.Format(_T("警告:打开连接发生异常。 错误信息: %s"), e.ErrorMessage());
AfxMessageBox(strError);
return FALSE;
}
然后在:
try
{
int _iGroupID;
m_pRecordset.CreateInstance(__uuidof(Recordset));
_ConnectionPtr pCon = ((CPttApp*)AfxGetApp())->m_pConnection;
m_pRecordset->Open("select * from Order", pCon.GetInterfacePtr(), adOpenDynamic, adLockOptimistic, adCmdText);
while (!m_pRecordset->adoEOF)
{
_iGroupID = m_pRecordset->GetCollect("GroupID");
m_pRecordset->MoveNext();
}
}
catch (_com_error e)
{
CString strError;
strError.Format(_T("警告:执行插入操作失败。 错误信息: %s"), e.ErrorMessage());
AfxMessageBox(strError);
return;
}
报异常:
IDispatch error #3092 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询