代码刷新ODBC链接SQLSEVER表

发表于:2007-06-21来源:作者:点击数: 标签:
Function relink() Dim db As Database Dim tbl As TableDef Dim a As String Dim b As String Dim d As String a = "sa"' 数据库 用户 b = "abc"'数据库口令 d = "abcde"'数据库名称 Set db = CurrentDb For Each tbl In db.TableDefs If tbl.Attributes =

   Function relink()
   Dim db As Database
   Dim tbl As TableDef
   Dim a As String
   Dim b As String
   Dim d As String  

   a = "sa"'数据库用户
   b = "abc"'数据库口令

   d = "abcde"'数据库名称
   Set db = CurrentDb

   For Each tbl In db.TableDefs
   If tbl.Attributes = 536870912 Then
   tbl.Connect = "FILEDSN=d:\demo\steel.dsn;UID=" & a & ";PWD=" & b & ";WSID=;DATABASE=" & d & ";Network=DBMSSOCN"
   tbl.Attributes = dbAttachSavePWD
   tbl.RefreshLink
   End If
   Next 

   End Function 

   附上微软工程师Billy Yao的解答说明:  

   根据您的描述,我对您的问题解答如下: 

   1. DSN=gnts 中gnts是系统DSN的文件名。

   2. UID是用户名,并且它的值由变量a的值决定。PWD是密码,并且它的值由变量b的值决定。

   3. WSID 是指工作站的ID号 (Workstation ID)。变量d的值表示数据库的名称。 Network=DBMSSOCN 指TCP/IP所使用的网络库(Network Library)。

原文转自:http://www.ltesting.net