请用MFC写一个判断表是否存在或为空的函数?
函数定义为intgetTableId(_ConnectionPtr&conn,CStringtable),若数据库中不存在该表则返回-1,若该表中无记录则返回0。此函数可...
函数定义为int getTableId(_ConnectionPtr &conn,CString table),若数据库中不存在该表则返回 -1,若该表中无记录则返回0。此函数可以使用请使用_ConnectionPtr类和_RecordsetPtr类,是针对通用数据库,包括SQL Server、Qracle和mysql。
展开
展开全部
用_ConnectionPtr的Execute方法。如果表不存在,会抛出_com_error异常,如果表存在无记录,则_RecordsetPtr不存在记录。
//_RecordsetPtr m_pRecordset;
int getTableId(_ConnectionPtr &conn,CString table) {
CString strQuery;
strQuery.Format(_T("select 1 from %s"), table);
try {
m_pRecordset = conn->Execute((_bstr_t)strQuery, NULL, adCmdText);
}
catch(_com_error e) {
return -1;//表不存在
}
if (m_pRecordset->adoBOF) {
m_pRecordset->Close();
return 0;//无记录
} else {
m_pRecordset->Close();
return 1;//有记录
}
}
这个函数有些不严谨,不过较直观,基本能满足函数功能要求。
//_RecordsetPtr m_pRecordset;
int getTableId(_ConnectionPtr &conn,CString table) {
CString strQuery;
strQuery.Format(_T("select 1 from %s"), table);
try {
m_pRecordset = conn->Execute((_bstr_t)strQuery, NULL, adCmdText);
}
catch(_com_error e) {
return -1;//表不存在
}
if (m_pRecordset->adoBOF) {
m_pRecordset->Close();
return 0;//无记录
} else {
m_pRecordset->Close();
return 1;//有记录
}
}
这个函数有些不严谨,不过较直观,基本能满足函数功能要求。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询