-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSQLAutoIncrementValue.cls
More file actions
executable file
·76 lines (56 loc) · 2.16 KB
/
SQLAutoIncrementValue.cls
File metadata and controls
executable file
·76 lines (56 loc) · 2.16 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "SQLAutoIncrementValue"
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
Implements ISQLStatement
Public ConnectionType As ConnectionTypeEnum
Private pstrReturnFieldName As String
Public Property Let ReturnFieldName(ByVal strValue As String)
If Trim$(strValue) = vbNullString Then
RaiseError dboErrorInvalidPropertyValue, "vbNullString"
End If
pstrReturnFieldName = strValue
End Property
Public Property Get ReturnFieldName() As String
ReturnFieldName = pstrReturnFieldName
End Property
Public Property Get SQL() As String
Attribute SQL.VB_UserMemId = 0
Select Case Me.ConnectionType
Case dboConnectionTypeMicrosoftAccess, dboConnectionTypeSQLServer
SQL = "SELECT @@IDENTITY AS " & SQLConvertIdentifierName(Me.ReturnFieldName, Me.ConnectionType)
Case dboConnectionTypeMySQL
'The @@IDENTITY function is supported by MySQL from version 3.23.25
'but use the original function here just in case
SQL = "SELECT LAST_INSERT_ID() AS " & SQLConvertIdentifierName(Me.ReturnFieldName, Me.ConnectionType)
End Select
End Property
Private Sub Class_Initialize()
ConnectionType = modMisc.ConnectionType
Me.ReturnFieldName = "AutoIncrementValue"
End Sub
Private Property Get ISQLStatement_ConnectionType() As ConnectionTypeEnum
ISQLStatement_ConnectionType = Me.ConnectionType
End Property
Private Property Let ISQLStatement_ConnectionType(ByVal RHS As ConnectionTypeEnum)
Me.ConnectionType = RHS
End Property
Private Property Get ISQLStatement_SQL() As String
ISQLStatement_SQL = Me.SQL
End Property