Bugfix trips

This commit is contained in:
2024-03-14 13:22:51 +01:00
parent 583bc67daa
commit bfa0d5aa84

View File

@@ -74,7 +74,7 @@ FROM tblAuftraege WHERE atr_tripNr = '{0}' ORDER BY atr_tripStopNr"
For Each i In List
Spalten &= i.SQLText & ","
Werte &= "'" & i.SQLValue & "',"
Werte &= "'" & i.SQLValue.replace("'", "") & "',"
Next
Spalten = Spalten.Substring(0, Spalten.Length - 1)