mirror of
https://github.com/dfinke/ImportExcel.git
synced 2026-02-11 14:03:29 +00:00
Merge pull request #1 from jamesmmueller/jamesmmueller-patch-1
ConvertFrom-ExcelToSQLInsert fix single quotes
This commit is contained in:
@@ -16,12 +16,15 @@ function ConvertFrom-ExcelToSQLInsert {
|
||||
[switch]$NoHeader,
|
||||
[switch]$DataOnly,
|
||||
[switch]$ConvertEmptyStringsToNull,
|
||||
[switch]$UseMsSqlSyntax
|
||||
[switch]$UseMsSqlSyntax,
|
||||
[Parameter(Mandatory = $false)]
|
||||
$SingleQuoteStyle
|
||||
)
|
||||
|
||||
$null = $PSBoundParameters.Remove('TableName')
|
||||
$null = $PSBoundParameters.Remove('ConvertEmptyStringsToNull')
|
||||
$null = $PSBoundParameters.Remove('UseMsSqlSyntax')
|
||||
$null = $PSBoundParameters.Remove('SingleQuoteStyle')
|
||||
|
||||
$params = @{} + $PSBoundParameters
|
||||
|
||||
@@ -38,11 +41,16 @@ function ConvertFrom-ExcelToSQLInsert {
|
||||
'NULL'
|
||||
}
|
||||
else {
|
||||
"'" + $record.$propertyName + "'"
|
||||
if ( $SingleQuoteStyle ) {
|
||||
"'" + $record.$propertyName.ToString().Replace("'",${SingleQuoteStyle}) + "'"
|
||||
}
|
||||
else {
|
||||
"'" + $record.$propertyName + "'"
|
||||
}
|
||||
}
|
||||
}
|
||||
$targetValues = ($values -join ", ")
|
||||
|
||||
"INSERT INTO {0} ({1}) Values({2});" -f $TableName, $ColumnNames, $targetValues
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user