Skip to content

Commit f2c911c

Browse files
authored
update master (#49)
Update Master
1 parent 6f6377f commit f2c911c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/ClassModules/SQLCondition.cls

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,24 @@ Attribute VB_GlobalNameSpace = False
77
Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
10+
' Class: SQLCondition
11+
' A SQL Condition clause.
1012
Private sExpression1
1113
Private sExpression2
1214
Private sOperator As String
1315

1416
Property Get Operator() As String
1517
Operator = sOperator
1618
End Property
19+
20+
' Function: Create
21+
' Create a condition expression.
22+
' Should this be a sub instead of a function?
23+
'
24+
' Parameters:
25+
' Expression1 - data type?
26+
' Expression2 - data type?
27+
' Operator - The comparison operator
1728
Public Function Create(Expression1, Expression2, Optional Operator As String = "=")
1829
sExpression1 = Expression1
1930
sExpression2 = Expression2

0 commit comments

Comments
 (0)