remove commas from numeric inputs
This commit is contained in:
parent
b03218cd4d
commit
81e7bd3f07
@ -2282,7 +2282,7 @@ Public Function SQLp_build_sql_values(ByRef tbl() As String, trim As Boolean, he
|
||||
If tbl(j, i) = "" Then
|
||||
rec = rec & "CAST(NULL AS NUMERIC)"
|
||||
Else
|
||||
rec = rec & Replace(tbl(j, i), "'", "''")
|
||||
rec = rec & Replace(Replace(tbl(j, i), "'", "''"), ",", "")
|
||||
End If
|
||||
Case "S" '-------S = string------------------------------------------
|
||||
If LTrim(RTrim(tbl(j, i))) = "" Then
|
||||
|
Loading…
Reference in New Issue
Block a user