'标准构造函数2 - 使用 UDL 连接文件
Public Sub New(ByVal strUdlFileName As String, ByVal blnUseLocalPath As Boolean, ByVal intTimeOut As Integer)
Me.DbConnection = New OleDb.OleDbConnection
Me.DbRecordset = New DataSet
Me.m_strConnectionSource = "FILE NAME="
If blnUseLocalPath = True Then
Me.m_strConnectionSource &= Me.m_funGetAppRootPath() & strUdlFileName.Trim()
Else
Me.m_strConnectionSource &= strUdlFileName.Trim()
End If