File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,24 @@ Attribute VB_GlobalNameSpace = False
77Attribute VB_Creatable = False
88Attribute VB_PredeclaredId = False
99Attribute VB_Exposed = False
10+ ' Class: SQLCondition
11+ ' A SQL Condition clause.
1012Private sExpression1
1113Private sExpression2
1214Private sOperator As String
1315
1416Property Get Operator() As String
1517 Operator = sOperator
1618End 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
1728Public Function Create (Expression1, Expression2, Optional Operator As String = "=" )
1829 sExpression1 = Expression1
1930 sExpression2 = Expression2
You can’t perform that action at this time.
0 commit comments