Refreshing an ODBC linked SQL Server table with code

Source: Internet
Author: User
Tags dsn odbc

Q: When using an MDB to link with SQL Server 2000, sometimes you need to refresh the linked table, how to do it simply and easily?
  
A: The following code can achieve the purpose (the resolution of this topic refers to the user Cwang code, and the Microsoft engineer Billy Yao enthusiastic help):
  
Function relink ()
Dim DB as Database
Dim TBL as TableDef
Dim A as String
Dim B as String
Dim D as String
  
A = "sa" database user
b = "ABC" Database password
D = "ABCDE" database name
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=;D atabase= "& D &"; NETWORK=DBMSSOCN "'
Tbl. Attributes = dbAttachSavePWD
Tbl. RefreshLink
End If
Next
End Function
  
Enclosed is the answer to the Microsoft engineer Billy Yao:
  
According to your description, my answer to your question is as follows:
  
1. dsn=gnts gnts is the file name of the system DSN.
  
2. UID is the username, and its value is determined by the value of variable A. PWD is a password, and its value is determined by the value of the variable B.
  
3. Wsid refers to the workstation's ID number (Workstation ID). The value of the variable d represents the name of the database. NETWORK=DBMSSOCN refers to the network library (network library) used by TCP/IP.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.