Merge pull request #732 from beckerben/master

Fix for #512 & #525
This commit is contained in:
Doug Finke
2019-11-23 08:51:15 -05:00
committed by GitHub

View File

@@ -108,7 +108,7 @@ function ConvertFrom-ExcelToSQLInsert {
'NULL' 'NULL'
} }
else { else {
"'" + $record.$propertyName + "'" "'" + (($record.$propertyName) -replace "'","''") + "'"
} }
} }
$targetValues = ($values -join ", ") $targetValues = ($values -join ", ")