-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathSQLConnection.cls
40 lines (32 loc) · 1.02 KB
/
SQLConnection.cls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "SQLConnection"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Implements iSQLConnection
'A wrapper for the ADODB.Connection Object.
'This allows unit testing without an active database implementation
'The native Connection uses several function names which are reserved keywords
Private ocnt As ADODB.Connection
Private Sub Class_Initialize()
Set ocnt = New ADODB.Connection
End Sub
Public Property Get iSQLConnection_Connection()
Set iSQLConnection_Connection = ocnt
End Property
Public Sub iSQLConnection_OpenConnection()
ocnt.Open
End Sub
Public Sub iSQLConnection_CloseConnection()
ocnt.Close
End Sub
Public Function iSQLConnection_State()
iSQLConnection_State = ocnt.State
End Function
Public Property Let iSQLConnection_ConnectionString(sConnection As String)
ocnt.ConnectionString = sConnection
End Property