-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule1.bas
324 lines (247 loc) · 11.6 KB
/
Module1.bas
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
Attribute VB_Name = "Module1"
Sub generateFile()
Dim ws As Worksheet
Dim ws_main As Worksheet: Set ws_main = ActiveWorkbook.Worksheets("main")
Dim WS_Count As Integer
Dim I As Integer
Dim Column_count As String
Dim Row_Count As String
Dim insertValues As String
Dim separator As String: separator = ","
Dim cellValue As String
Dim tableName As String
Dim insertCommand As String
Dim OutputFileNum As Integer
Dim PathName As String
Dim FileName As String
Dim FileExtension As String
Dim useStatement As String
Dim TablesTotal As Integer
Dim InsertsTotal As Integer
ws_main.Range("TBL_TOT").Value = ""
ws_main.Range("INS_TOT").Value = ""
FileName = ws_main.Range("FILE_NAME") 'Cells(2, 5)
FileExtension = ws_main.Range("FILE_EXT") 'Cells(3, 5)
useStatement = ws_main.Range("USE_SQL") 'Cells(4, 5)
WS_Count = ActiveWorkbook.Worksheets.Count
TablesTotal = WS_Count - 1
If WS_Count > 1 Then
PathName = Application.ActiveWorkbook.Path
OutputFileNum = FreeFile
Open PathName & "\" & FileName & "." & FileExtension For Output Lock Write As #OutputFileNum
For I = 1 To WS_Count
' MsgBox ActiveWorkbook.Worksheets(I).Name
Set ws = ActiveWorkbook.Worksheets(I)
If ws.Name <> "main" Then
tableName = ws.Name
'MsgBox tableName
Column_count = ws.UsedRange.Columns.Count
Row_Count = ws.UsedRange.Rows.Count
If Row_Count > 3 And Column_count > 2 Then
'MsgBox Column_count
'MsgBox Row_Count
For row = 4 To Row_Count
insertValues = ""
For col = 1 To Column_count
If col = 1 Then
If ws.Cells(row, col) = "Ignore Row" Then
Exit For 'don't itterate columns of this row
Else
GoTo ContinueLoop 'skip first column
End If
End If
'MsgBox ws.Cells(row, col).Value
If ws.Cells(row, col) = "" Then
If ws.Cells(2, col) = "" Then
Exit For
ElseIf ws.Cells(2, col) = "DEFAULT" Then
cellValue = "DEFAULT"
insertValues = insertValues & (separator & cellValue)
ElseIf ws.Cells(2, col) = "NULL" Then
cellValue = ""
insertValues = insertValues & (separator & cellValue)
Else
cellValue = ws.Cells(2, col).Value
insertValues = insertValues & (separator & cellValue)
End If
Else
If ws.Cells(1, col) <> "" Then
If ws.Cells(1, col) = "NUMBER" Then
cellValue = ws.Cells(row, col).Value
End If
Else
cellValue = ws.Cells(row, col).Value
' escape single quote
cellValue = Replace(cellValue, "'", "\'")
' escape double quote
cellValue = Replace(cellValue, """", "\""")
' enclose result value into single quotes
cellValue = "'" & cellValue & "'"
End If
insertValues = insertValues & (separator & cellValue)
End If
ContinueLoop:
Next col
If Len(insertValues) <> 0 Then
insertValues = Right$(insertValues, (Len(insertValues) - Len(separator)))
End If
If insertValues <> "" Then
InsertsTotal = InsertsTotal + 1
'MsgBox insertValues
If useStatement = "Yes" Then
insertCommand = "INSERT INTO {tableName} VALUES ({insertValues});"
insertCommand = Replace(insertCommand, "{tableName}", tableName)
insertCommand = Replace(insertCommand, "{insertValues}", insertValues)
Print #OutputFileNum, insertCommand
Else
Print #OutputFileNum, insertValues
End If
End If
Next row
End If
End If
Next I
Close OutputFileNum
End If
ws_main.Range("TBL_TOT").Value = TablesTotal
ws_main.Range("INS_TOT").Value = InsertsTotal
End Sub
Sub AddWSTable()
Dim ws As Worksheet
Dim ws_main As Worksheet: Set ws_main = ActiveWorkbook.Worksheets("main")
Dim insertLine As String
Dim openPos As Integer
Dim closePos As Integer
Dim midBit As String
Dim WrdArray() As String
Dim headerCellValue As String
Dim lastColumn As Integer
Dim matchesFound As Collection
Dim tableName As String
insertLine = ws_main.Range("INS_STMT").Value '14, 4
If insertLine <> "" Then
Set matchesFound = getSeparatedValues(insertLine, "`")
'MsgBox matchesFound.Count
'MsgBox matchesFound(1)
tableName = matchesFound(2)
If SheetExists(tableName) = True Then
MsgBox "Error. Worksheet (table) with name '" & tableName & "' already exists."
Else
openPos = InStr(insertLine, "(")
closePos = InStr(insertLine, ")")
midBit = Mid(insertLine, openPos + 1, closePos - openPos - 1)
'MsgBox midBit
WrdArray() = Split(midBit, ",")
If UBound(WrdArray) > 0 Then
Set ws = ThisWorkbook.Sheets.Add(After:= _
ThisWorkbook.Sheets(ThisWorkbook.Sheets.Count))
ws.Name = tableName
For I = LBound(WrdArray) To UBound(WrdArray)
headerCellValue = WrdArray(I)
headerCellValue = Trim(headerCellValue)
headerCellValue = Replace(headerCellValue, "`", "")
ws.Cells(3, I + 2).Value = headerCellValue
If headerCellValue = "id" Then
ws.Cells(1, I + 2).Value = "NUMBER"
ElseIf EndsWith(headerCellValue, "_by") Then
ws.Cells(1, I + 2).Value = "NUMBER"
ElseIf EndsWith(headerCellValue, "_id") Then
ws.Cells(1, I + 2).Value = "NUMBER"
End If
' add validations
ws.Cells(1, I + 2).Validation.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Formula1:="NUMBER"
ws.Cells(1, I + 2).Validation.ErrorMessage = "Please select a valid value from the list"
ws.Cells(2, I + 2).Validation.Add Type:=xlValidateList, Formula1:="DEFAULT,NULL,1,0"
ws.Cells(2, I + 2).Validation.ShowError = False
lastColumn = I + 2
ws.Cells(1, I + 2).EntireColumn.AutoFit
ws.Cells(1, I + 2).EntireColumn.HorizontalAlignment = xlCenter
Next I
' set first column values
ws.Cells(1, 1).Value = ws_main.Range("ROW_TYPE").Value
ws.Cells(2, 1).Value = ws_main.Range("DEFAULT_VALUE").Value
ws.Cells(3, 1).Value = ws_main.Range("COLUMN_NAME").Value
'ws.Cells(4, 1).Value = ws_main.Range("DATA_ROWS").Value
' set colors
ws.Cells(1, 1).EntireRow.Interior.Color = ws_main.Range("COLOR1").Interior.Color '16, 4
ws.Cells(2, 1).EntireRow.Interior.Color = ws_main.Range("COLOR2").Interior.Color '17, 4
ws.Cells(3, 1).EntireRow.Interior.Color = ws_main.Range("COLOR3").Interior.Color '18, 4
' set column after which safe to enter any text
ws.Cells(1, lastColumn + 1).EntireColumn.Interior.Color = ws_main.Range("AFTER_LAST_COL").Interior.Color
' and additional parameters
ws.Cells(1, 1).EntireColumn.AutoFit
ws.Cells(1, 1).EntireColumn.HorizontalAlignment = xlRight
ws.Cells(1, 1).EntireColumn.Interior.Color = ws_main.Range("ROW_TYPE").Interior.Color
' set borders
ws.Cells(3, 1).EntireRow.Borders(xlEdgeBottom).LineStyle = xlContinuous
ws.Cells(1, 1).EntireColumn.Borders(xlEdgeRight).LineStyle = xlContinuous
'set validation for first column
ws.Cells(1, 1).EntireColumn.Validation.Add Type:=xlValidateList, Formula1:="Ignore Row"
ws.Cells(1, 1).Validation.Delete
ws.Cells(2, 1).Validation.Delete
ws.Cells(3, 1).Validation.Delete
'set conditional formatting rule for rows which will be ignored
With ws.Range("=$A$1:$Z$1500")
.FormatConditions.Add Type:=xlExpression, Formula1:="=INDIRECT(""a""&ROW())=""Ignore Row"""
.FormatConditions(.FormatConditions.Count).Interior.Color = ws_main.Range("IGNORE_ROW").Interior.Color
End With
End If
End If
End If
End Sub
Private Function SheetExists(shtName As String, Optional wb As Workbook) As Boolean
Dim sht As Worksheet
If wb Is Nothing Then Set wb = ThisWorkbook
On Error Resume Next
Set sht = wb.Sheets(shtName)
On Error GoTo 0
SheetExists = Not sht Is Nothing
End Function
Private Function getSeparatedValues(sText As String, char As String) As Collection
Dim getSeparatedValues_ As New Collection
Dim bIsBetween As Boolean
Dim skipNext As Boolean
Dim iLength As Integer
Dim sToken As String
bIsBetween = False
skipNext = False
sToken = ""
iLength = Len(sText) - 1
For I = 1 To iLength
If (skipNext = True) Then
skipNext = False
Else
Dim chr As String
Dim nextChr As String
chr = Mid(sText, I, 1)
nextChr = Mid(sText, I + 1, 1)
If (chr = char) Then
bIsBetween = True
End If
If (nextChr = char) Then
bIsBetween = False
End If
If (bIsBetween = True) Then
sToken = sToken & nextChr
Else
If (Len(sToken) > 0) Then
skipNext = True
getSeparatedValues_.Add (sToken)
sToken = ""
End If
End If
End If
Next I
Set getSeparatedValues = getSeparatedValues_
Set getSeparatedValues_ = Nothing
End Function
Private Function EndsWith(str As String, ending As String) As Boolean
Dim endingLen As Integer
endingLen = Len(ending)
EndsWith = (Right(Trim(UCase(str)), endingLen) = UCase(ending))
End Function
Private Function StartsWith(str As String, start As String) As Boolean
Dim startLen As Integer
startLen = Len(start)
StartsWith = (Left(Trim(UCase(str)), startLen) = UCase(start))
End Function