今天图老师小编给大家精心推荐个一个ACCESS数据库数据传递地办法教程,一起来看看过程究竟如何进行吧!喜欢还请点个赞哦~
【 tulaoshi.com - 编程语言 】
一直以来,ACCESS数据库中的申报数据在分公司与总公司之间传递,用EXCEL或DBASE、TXT甚至ACCESS等格式,我总觉得不太理想。最近看了一本书,不经意间发现了一个方法,使用ACCESS数据库生成申报数据与读入数据似乎简单了不少,特拿出来与大家分享。同时,也希望能得到更多的指点。
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)附上示例:
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)Sub Mwrite() 
On Error GoTo thiserr 
Dim rs As New ADODB.Recordset 
rs.Open "dlmd", CurrentProject.Connection, adOpenDynamic, adLockOptimistic, acTable 
rs.Save "a:dlmd.adtg", adPersistADTG 
rs.Close 
Set rs = Nothing 
thisexit: 
Exit Sub 
thiserr: 
MsgBox Err.Description 
Resume thisexit 
End Sub 
Sub Mread() 
On Error GoTo Merr 
Dim i As Integer 
Dim rsDe As New ADODB.Recordset 
Dim rsSo As New ADODB.Recordset 
rsSo.Open "a:dlmd.adtg", "provider=mspersist" 
rsDe.Open "dlmd", CurrentProject.Connection, adOpenKeyset, adLockOptimistic, acTable 
Do Until rsSo.EOF 
rsDe.AddNew 
For i = 0 To rsSo.Fields.Count - 1 
rsDe.Fields(i) = rsSo.Fields(rsDe.Fields(i).Name) 
Next i 
rsDe.Update 
rsSo.MoveNext 
Loop 
rsSo.Close 
rsDe.Close 
Set rsSo = Nothing 
Set rsDe = Nothing 
Mexit: 
Exit Sub 
Merr: 
MsgBox Err.Description 
Resume Mexit 
End Sub 
来源:http://www.tulaoshi.com/n/20160219/1615369.html
看过《一个ACCESS数据库数据传递地办法》的人还看了以下文章 更多>>