MS Access将表链接到SSMS视图

时间:2019-01-22 14:58:59

标签: vba ms-access ssms

我正在尝试创建与SSMS视图的dsnless连接。我能够连接到几个表,只是不确定如何获取特定视图。这是我连接数据库的功能。我只调用它并传递所需的变量。

Function AttachDSNLessTable(stLocalTableName As String, stRemoteTableName As String, stServer As String, stDatabase As String, Optional stUsername As String, Optional stPassword As String)
On Error GoTo AttachDSNLessTable_Err
Dim td As TableDef
Dim stConnect As String

For Each td In CurrentDb.TableDefs
    If td.Name = stLocalTableName Then
        CurrentDb.TableDefs.Delete stLocalTableName
    End If
Next

If Len(stUsername) = 0 Then
    '//Use trusted authentication if stUsername is not supplied.
    stConnect = "ODBC;DRIVER=SQL Server;SERVER=" & stServer & ";DATABASE=" & stDatabase & ";Trusted_Connection=Yes"
Else
    '//WARNING: This will save the username and the password with the linked table information.
    stConnect = "ODBC;DRIVER=SQL Server;SERVER=" & stServer & ";DATABASE=" & stDatabase & ";UID=" & stUsername & ";PWD=" & stPassword
End If
Set td = CurrentDb.CreateTableDef(stLocalTableName, dbAttachSavePWD, stRemoteTableName, stConnect)
CurrentDb.TableDefs.Append td
AttachDSNLessTable = True
MsgBox "New table created."
Exit Function

AttachDSNLessTable_Err:

AttachDSNLessTable = False
MsgBox "AttachDSNLessTable encountered an unexpected error: " & Err.Description

End Function

我正在用按钮调用此方法。

Private Sub Command2_Click()

Dim td As TableDef
Dim stConnect As String
Call AttachDSNLessTable("Order_Tracking_Tool", "Order_Tracking_Tool", "TestingServer", "TestDB", "TESTuser", "TESTpswd") 
End Sub

0 个答案:

没有答案