-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSQLIndexFields.cls
More file actions
executable file
·61 lines (45 loc) · 1.51 KB
/
SQLIndexFields.cls
File metadata and controls
executable file
·61 lines (45 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "SQLIndexFields"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
' ___________________________________________________
'
' © Hi-Integrity Systems 2007. All rights reserved.
' www.hisystems.com.au - Toby Wicks
' ___________________________________________________
'
Option Explicit
Private pcolFields As Collection
Public Function Add( _
Optional ByVal strFieldName As String, _
Optional ByVal eOrder As SQLOrderByEnum) As SQLIndexField
Dim objField As SQLIndexField
Set objField = New SQLIndexField
With objField
.Name = strFieldName
.Order = eOrder
End With
pcolFields.Add objField
Set Add = objField
End Function
Private Sub Class_Initialize()
Set pcolFields = New Collection
End Sub
Friend Property Get SQL(ByVal eConnectionType As ConnectionTypeEnum) As String
Const cstrSeperator As String = ", "
Dim strSQL As String
Dim objField As SQLIndexField
For Each objField In pcolFields
strSQL = strSQL & objField.SQL(eConnectionType) & cstrSeperator
Next
SQL = Left$(strSQL, Len(strSQL) - Len(cstrSeperator)) 'remove the last comma and space
End Property