Not a Member Yet,
Click here to Register

ID: 12
Viewed: 3117
Added: Nov 21, 2001
Version:
Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

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
'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

Highlight All
<!---Code--->
none;


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


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.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!