dont quote column names
This commit is contained in:
parent
08a64f4592
commit
787c2c736f
@ -2307,7 +2307,7 @@ Public Function SQLp_build_sql_values(ByRef tbl() As String, trim As Boolean, he
|
||||
start_row = 1
|
||||
For i = 0 To UBound(tbl, 1)
|
||||
If i > 0 Then col_name = col_name & ","
|
||||
col_name = col_name & """" & tbl(i, 0) & """"
|
||||
col_name = col_name & tbl(i, 0)
|
||||
Next i
|
||||
Else
|
||||
start_row = 0
|
||||
|
Loading…
Reference in New Issue
Block a user