acc本身的Dlookup,Dmax等函數应用速度測試
时 间:2008-07-11 17:06:06
作 者:fuyvn ID:43 城市:江阴
摘 要:acc本身的Dlookup,Dmax等函數应用速度測試
正 文:
經本人測度. AC 自帶 Dlookup ,Dmax 與 用 ADO 編寫的相應的替代函數 , 速度 比較結果如下.
先便出 用 ADO 寫的相應的 替代函數.
Public Conn As New ADODB.Connection 'Conn
'mLookUp 替代 AC中的 Dlookup
Public Function mLookUp(ByVal strFieldName As String, ByVal strTableName As String, Optional ByVal strWhere As String) As Variant
Dim sql As String
sql = "select " & strFieldName & " From " & strTableName
If Len(strWhere) > 0 Then sql = sql & " where " & strWhere
On Error Resume Next
mLookUp = Conn.Execute(sql)(0)
If Err <> 0 Then
Err.Clear
mLookUp = Null
End If
End Function
'mMax 替代 AC中的 DMax
Public Function mMax(ByVal strFieldName As String, ByVal strTableName As String, Optional ByVal strWhere As String) As Variant
Dim sql As String
sql = "select Max(" & strFieldName & ") From " & strTableName
If Len(strWhere) > 0 Then sql = sql & " where " & strWhere
On Error Resume Next
mMax = Conn.Execute(sql)(0)
If Err <> 0 Then
Err.Clear
mMax = Null
End If
End Function
Public Function OpenConn() As Boolean
On Error Resume Next
Set Conn = CurrentProject.Connection
'Conn.Open "Provider = Microsoft.Jet.OLEDB.4.0;Data Source = \\Server\all_user\TOFuyvn\db1.mdb"
If Conn.State = adStateClosed Then
OpenConn = False
Else
OpenConn = True
End If
End Function
測度結果:
具體數據就不一一例出. 我在群中都有發過.
結論:
如果數據庫在本機上 : Dlookup 及 DMax 比 mLookup 及 mMax 要快 70% 左右.
如果數據庫 在 局域網中的 其它電腦上, 將表 連接到 本機上: mLookup 及 mMax 比 Dlookup 及 DMax 快5 倍以上.
如果是 ADP 遠程連接 SQL 數據庫: mLookup 及 mMax 比 Dlookup 及 DMax 快 4 倍以上.
以上只是本人 自己測試的 結論, 不代表其它人的意見. 只做 參考用.
先便出 用 ADO 寫的相應的 替代函數.
Public Conn As New ADODB.Connection 'Conn
'mLookUp 替代 AC中的 Dlookup
Public Function mLookUp(ByVal strFieldName As String, ByVal strTableName As String, Optional ByVal strWhere As String) As Variant
Dim sql As String
sql = "select " & strFieldName & " From " & strTableName
If Len(strWhere) > 0 Then sql = sql & " where " & strWhere
On Error Resume Next
mLookUp = Conn.Execute(sql)(0)
If Err <> 0 Then
Err.Clear
mLookUp = Null
End If
End Function
'mMax 替代 AC中的 DMax
Public Function mMax(ByVal strFieldName As String, ByVal strTableName As String, Optional ByVal strWhere As String) As Variant
Dim sql As String
sql = "select Max(" & strFieldName & ") From " & strTableName
If Len(strWhere) > 0 Then sql = sql & " where " & strWhere
On Error Resume Next
mMax = Conn.Execute(sql)(0)
If Err <> 0 Then
Err.Clear
mMax = Null
End If
End Function
Public Function OpenConn() As Boolean
On Error Resume Next
Set Conn = CurrentProject.Connection
'Conn.Open "Provider = Microsoft.Jet.OLEDB.4.0;Data Source = \\Server\all_user\TOFuyvn\db1.mdb"
If Conn.State = adStateClosed Then
OpenConn = False
Else
OpenConn = True
End If
End Function
測度結果:
具體數據就不一一例出. 我在群中都有發過.
結論:
如果數據庫在本機上 : Dlookup 及 DMax 比 mLookup 及 mMax 要快 70% 左右.
如果數據庫 在 局域網中的 其它電腦上, 將表 連接到 本機上: mLookup 及 mMax 比 Dlookup 及 DMax 快5 倍以上.
如果是 ADP 遠程連接 SQL 數據庫: mLookup 及 mMax 比 Dlookup 及 DMax 快 4 倍以上.
以上只是本人 自己測試的 結論, 不代表其它人的意見. 只做 參考用.
Access软件网QQ交流群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- Access对子窗体数据进行批...(10.30)
- 最精简的组合框行来源数据快速输...(10.25)
- Access仿平台的多值选择器...(10.24)
- 【Access日期区间段查询】...(10.22)
- 【Access源码示例】VBA...(10.12)
- Access累乘示例,Acce...(10.09)
- 数值8.88,把整数8去掉,转...(10.08)
- 【Access自定义函数】一个...(09.30)
- 【Access选项卡示例】Ac...(09.09)
学习心得
最新文章
- Access快速开发平台--对上传...(11.22)
- Access快速开发平台企业版--...(11.18)
- 不会用多表联合查询,多表查询没结果...(11.16)
- 【案例分享】主键字段值含有不间断空...(11.16)
- Access快速开发平台--后台D...(11.14)
- 微软Access邀测新Monaco...(11.12)
- Access列表框左右互选、列表框...(11.11)
- 高效率在导入数据前删除记录(11.10)
- Access报价单转订单示例代码(11.08)
- Access系统自带的日期选择器不...(11.08)