-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSQLComparisonExpression.cls
More file actions
executable file
·41 lines (30 loc) · 1.03 KB
/
SQLComparisonExpression.cls
File metadata and controls
executable file
·41 lines (30 loc) · 1.03 KB
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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "SQLComparisonExpression"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
' ___________________________________________________
'
' © Hi-Integrity Systems 2014. All rights reserved.
' www.hisystems.com.au - Toby Wicks
' ___________________________________________________
'
Option Explicit
Implements ISQLExpression
Public Left As ISQLExpression
Public Compare As SQLComparisonOperatorEnum
Public Right As ISQLExpression
Private Sub Class_Initialize()
Compare = dboComparisonEqualTo
End Sub
Private Property Get ISQLExpression_SQL(ByVal eConnectionType As ConnectionTypeEnum) As String
ISQLExpression_SQL = "(" & Left.SQL(eConnectionType) & " " & SQLConvertCompare(Compare) & " " & Right.SQL(eConnectionType) & ")"
End Property