dont quote column names

This commit is contained in:
pt 2020-01-09 17:51:26 -05:00
parent 08a64f4592
commit 787c2c736f

View File

@ -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