

ID: 311
Viewed: 3654
Added: Aug 19, 2002
Version:



Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



Thank you for your vote. Please wait...
It appears you already voted for this snippet
It appears your vote value was empty


Class to log into SQL Server with RDO
Highlight all by clicking in box
<!---Declaration--->
Option Explicit
Public Server As String
Public Database As String
Public User As String
Public Password As String
Public env As rdo.rdoEnvironment
Highlight All
<!---Code--->
'RDO Enviroment Public cn As rdo.rdoConnection
'RDO Connection Variable for SQL Database
Public Function ConnectRemote() As Boolean
On Error GoTo ConnectRemote_Error
Dim sConnect As String
sConnect = "DRIVER={SQL Server};SERVER=" & Me.Server _ & ";UID=" & Me.User & ";PWD=" & Me.Password & ";DATABASE=" & Me.Database & ";"
Set env = rdoEnvironments(0)
env.CursorDriver = rdUseClientBatch
Set cn = env.OpenConnection("", rdDriverNoPrompt, False, sConnect, rdAsyncEnable)
With cn
While .StillConnecting
DoEvents
Wend
End With
Call SaveSetting(App.Title, "Startup", "ConnectionVersion", cn.Version)
Call SaveSetting(App.Title, "Startup", "LastConnected", Now) ConnectRemote = True
ConnectRemote_Exit:
Exit Function
ConnectRemote_Error:
'Err.Raise goes here...
Call SaveSetting(App.Title, "StartUp", "LastError", Err & ":" & Err.Description) ConnectRemote = False Resume ConnectRemote_Exit End Function
;
No Comments to show


Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.
Adding your comment. Please wait...
Thanks for adding your comment!. After further review it will be added.
There was a problem adding your comment. Please try again.
Please complete all the fields in the form before sending.