我們今天主要向大家講述的是把SQL Server數(shù)據(jù)復(fù)制到的Access數(shù)據(jù)庫(kù)中的實(shí)際操作步驟,把SQL Server數(shù)據(jù)庫(kù)中的某些數(shù)據(jù)復(fù)制到的Access數(shù)據(jù)庫(kù)中,其表的主要結(jié)構(gòu)是相同的,不要提用openrowset,因?yàn)锳ccess文件和SQL Server不在一臺(tái)機(jī)器上。
初步的想法是用兩個(gè)recordset,一個(gè)從SQL取數(shù)據(jù),一個(gè)往Access里面插入數(shù)據(jù)
因?yàn)楸淼淖侄伪容^多,所以只好用一個(gè)循環(huán)
while (!m_pRecordset_sql->adoEOF)
{
m_pRecordset_access->AddNew();
for (int i = 0; i m_pRecordset_sql->Fields->Count; i++)
{
vValue = m_pRecordset_sql->GetCollect(_variant_t((long)i));
m_pRecordset_access->PutCollect(_variant_t((long)i), vValue);
}
m_pRecordset_access->Update();
m_pRecordset_sql->MoveNext();
}
以上的相關(guān)內(nèi)容就是對(duì)SQL Server數(shù)據(jù)復(fù)制到的Access中的介紹,望你能有所收獲。
上述的相關(guān)內(nèi)容就是對(duì)SQL Server數(shù)據(jù)復(fù)制到的Access中的描述,希望會(huì)給你帶來一些幫助在此方面。
您可能感興趣的文章:- 30 個(gè)很棒的PHP開源CMS內(nèi)容管理系統(tǒng)小結(jié)
- SQLite數(shù)據(jù)庫(kù)管理系統(tǒng)-我所認(rèn)識(shí)的數(shù)據(jù)庫(kù)引擎
- Swift中的Access Control權(quán)限控制介紹
- php結(jié)合ACCESS的跨庫(kù)查詢功能
- C#通過oledb訪問access數(shù)據(jù)庫(kù)的方法
- C#操作Access通用類實(shí)例
- Apache服務(wù)器中.htaccess的基本配置總結(jié)
- mysql Access denied for user ‘root’@’localhost’ (using password: YES)解決方法
- Javascript連接Access數(shù)據(jù)庫(kù)完整實(shí)例
- Access轉(zhuǎn)成SQL數(shù)據(jù)庫(kù)的方法
- Access創(chuàng)建一個(gè)簡(jiǎn)單MIS管理系統(tǒng)