vc6.0 C++语言如何嵌入sql语句?在管理工具中设定完ODBC之后,该怎么使VC与sql sever2000进行连接

求具体步骤,感激万分

CoInitialize(NULL);
_ConnectionPtr pConn(__uuidof(Connection));
_RecordsetPtr pRst(__uuidof(Recordset));

pConn->ConnectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Documents and Settings\\List.mdb;Persist Security Info=False";
pConn->Open("","","",adConnectUnspecified);
MessageBox("数据库连接正常!");
pRst=pConn->Execute("select * from DB1",NULL,adCmdText);
while(!pRst->rsEOF)
{
((CListBox *)GetDlgItem(IDC_LIST1))->AddString((_bstr_t)pRst->GetCollect("列名"));
pRst->MoveNext();
}

pRst->Close();
pConn->Close();
pRst.Release();
pConn.Release();

CoUninitialize();追问

写在哪个文件下?

追答

在你响应查询数据库的事件的源文件中去写。

温馨提示:内容为网友见解,仅供参考
第1个回答  2012-10-12
从网上搜索链接步骤。我使用数据库是使用ADO访问技术。挺好使的

Warning: Invalid argument supplied for foreach() in /www/wwwroot/aolonic.com/skin/templets/default/contents.html on line 45
相似回答