void CDBTestADODlg::OnBnClickedButtonseek() { // 清空列表框 m_ACCESSList.ResetContent(); // 声明一个ADO命令对象 _CommandPtr m_pCommand; m_pCommand.CreateInstance(_uuidof(Command)); m_pCommand->ActiveConnection = theApp.m_pConnection; //m_pConnection连接数据库文件 CString strName, strPrice, strLoca, strCuisine, strPopu, strItem, strSQL; GetDlgItemText(IDC_EDITScore,strPopu); int score; score = _ttoi(strPopu); strSQL.Format("SELECT * FROM 食堂窗口 WHERE 受欢迎程度=d%",score); m_pCommand->CommandText = _bstr_t(strSQL); // 执行SQL语句,获取记录集 _RecordsetPtr pRs; pRs.CreateInstance(__uuidof(Recordset)); pRs = m_pCommand->Execute(NULL, NULL, adCmdText); // 将记录集中的数据显示在list控件中 while (!pRs->adoEOF) { strName = pRs->GetCollect("窗口名称").bstrVal; strLoca = pRs->GetCollect("餐厅位置").bstrVal; strCuisine = pRs->GetCollect("主要菜品").bstrVal; strPrice = pRs->GetCollect("平均价格").bstrVal; strItem = strName + " " + strLoca + " " + strCuisine + " " + strPrice + " " + strPopu; m_ACCESSList.AddString(strItem); pRs->MoveNext(); } // 释放资源 pRs->Close(); }这段代码问题改怎么解决
时间: 2024-01-05 19:03:27 浏览: 77
Test_OptionList.rar_Test_OptionList_列表框_列表框 修改
这段代码有两个问题:
1. SQL语句中的格式化字符应该为 "d%" 而不是 "d%"
2. 在将记录集中的数据添加到列表框时,应该先检查窗口名称、餐厅位置、主要菜品和平均价格是否为空,否则可能会导致程序崩溃。可以使用以下代码进行检查:
if(!pRs->GetCollect("窗口名称").vt == VT_NULL)
strName = pRs->GetCollect("窗口名称").bstrVal;
else
strName = "";
// 类似的检查餐厅位置、主要菜品和平均价格
以下是修改后的代码:
void CDBTestADODlg::OnBnClickedButtonseek() {
// 清空列表框
m_ACCESSList.ResetContent();
// 声明一个ADO命令对象
_CommandPtr m_pCommand;
m_pCommand.CreateInstance(_uuidof(Command));
m_pCommand->ActiveConnection = theApp.m_pConnection; // m_pConnection连接数据库文件
CString strName, strPrice, strLoca, strCuisine, strPopu, strItem, strSQL;
GetDlgItemText(IDC_EDITScore, strPopu);
int score;
score = _ttoi(strPopu);
strSQL.Format("SELECT * FROM 食堂窗口 WHERE 受欢迎程度=%d", score);
m_pCommand->CommandText = _bstr_t(strSQL);
// 执行SQL语句,获取记录集
_RecordsetPtr pRs;
pRs.CreateInstance(__uuidof(Recordset));
pRs = m_pCommand->Execute(NULL, NULL, adCmdText);
// 将记录集中的数据显示在list控件中
while (!pRs->adoEOF)
{
if (!pRs->GetCollect("窗口名称").vt == VT_NULL)
strName = pRs->GetCollect("窗口名称").bstrVal;
else
strName = "";
// 类似的检查餐厅位置、主要菜品和平均价格
strLoca = pRs->GetCollect("餐厅位置").bstrVal;
strCuisine = pRs->GetCollect("主要菜品").bstrVal;
strPrice = pRs->GetCollect("平均价格").bstrVal;
strItem = strName + " " + strLoca + " " + strCuisine + " " + strPrice + " " + strPopu;
m_ACCESSList.AddString(strItem);
pRs->MoveNext();
}
// 释放资源
pRs->Close();
}
阅读全文