-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathSQLUpdate.cls
72 lines (60 loc) · 1.83 KB
/
SQLUpdate.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "SQLUpdate"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Option Explicit
' Class: SQLUpdate
' A SQL Update query
Implements iSQLQuery
Private vFields As Variant
Private vValues As Variant
Private sTable As String
Private oSQL As SQLQuery
' Property: Table
' The table whose values will be updated
Property Let Table(sValue As String)
sTable = sValue
End Property
' Property: Fields
Property Let Fields(vValue)
vFields = vValue
End Property
' Property: Values
Property Let Values(vValue)
vValues = vValue
End Property
' Constructor: Class_Initialize
' Initializes class members
Private Sub Class_Initialize()
Set oSQL = New SQLQuery
End Sub
' Function: FieldsAndValues
Private Function FieldsAndValues() As String
Dim numfields As Integer
numfields = UBound(vFields)
Dim vFieldsAndValues() As Variant
ReDim vFieldsAndValues(numfields)
Dim counter As Integer
counter = 0
For counter = 0 To numfields
vFieldsAndValues(counter) = vFields(counter) & "=" & vValues(counter)
Next counter
FieldsAndValues = Join(vFieldsAndValues, ", ")
End Function
' Function: iSQLQuery_ToString
Public Function iSQLQuery_ToString() As String
iSQLQuery_ToString = "UPDATE " & sTable & " SET " & FieldsAndValues & oSQL.WhereString
End Function
' Sub: AddWhere
Public Sub AddWhere(Field, Value, Optional op As String = "=", Optional GroupType As String = "AND")
oSQL.AddWhere Field, Value, op, GroupType
End Sub
' Sub: AddWhereGroup
Public Sub AddWhereGroup(NewWhereGroup As SQLWhereGroup, Optional GroupType As String = "AND")
oSQL.AddWhereGroup NewWhereGroup, GroupType
End Sub