Not a Member Yet,
Click here to Register

ID: 309
Viewed: 3584
Added: Aug 19, 2002
Version:
Snippet uploaded by: snippet
Written By: Clint LaFever
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

Interface to log into an Access database using OLEDB or SQL Server using SQL Server's driver, while using ADO 2.1

Highlight all by clicking in box
<!---Declaration--->
'------------------------------------------------------------ 
' Author: Clint M. LaFever [lafeverc@saic.com]
' Purpose: Interface to log into an Access database using
' OLEDB or SQL Server using SQL Server's driver,
' while using ADO 2.1
'------------------------------------------------------------
Option Explicit
'------------------------------------------------------------
' CLOGIN Properties
'------------------------------------------------------------
Public DataBaseName As String
Public ServerName As String
Public UserName As String
Public Password As String
Public cn As ADODB.Connection
'------------------------------------------------------------
' Database type constants
'------------------------------------------------------------
Public Enum DATABASE_TYPES SQL_SERVER = 0 MS_ACCESS97 = 1 End Enum
'------------------------------------------------------------
' Called to connect to the specified database,
' based on the values in the public properties
'------------------------------------------------------------
Public Function ConnectRemote(Optional dbTYPE As DATABASE_TYPES = 0) As Boolean
On Error GoTo ConnectRemote_Error
Dim sConnect As String

Highlight All
<!---Code--->
'------------------------------------------------------------ 
' Determine database type
'------------------------------------------------------------
If dbTYPE = SQL_SERVER Then sConnect = "DRIVER={SQL Server};SERVER=" & Me.ServerName _ & ";UID=" & Me.UserName & ";PWD=" & Me.Password & ";DATABASE=" & Me.DataBaseName & ";"
Else
sConnect = "Provider=Microsoft.Jet.OLEDB.3.51;Data Source=" & Me.DataBaseName & ";"
End If
'------------------------------------------------------------
' Attempt connection
'------------------------------------------------------------
Set cn = New ADODB.Connection
cn.Open sConnect
If cn.State = adStateOpen Then ConnectRemote = True
Else
ConnectRemote = False
End If
ConnectRemote = True
ConnectRemote_Exit:
Exit Function
ConnectRemote_Error:
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.


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!