-
-
Notifications
You must be signed in to change notification settings - Fork 261
Description
Hi,
First of all, thank you for the code - even now, it still provides much value. And I think it's worth a PR.
I run Invoke-SqlCmd2 with a combination of ErrorAction SilentlyContinue
and ErrorVariable
; this gives me a way to parse errors and add value for my use case (I have a wrapper function that injects creds and default values). I do not want to emit the errors to the stream, as they include permission errors where I want my wrapper to retry with the next credential.
I have found that the script attempts to continue execution when continuing makes no sense.
I have a device where
Line 478 in 7d136b1
[void]$da.fill($ds) |
VIEW DATABASE STATE permission denied in database 'master'.
- This obscures the error:
Line 486 in 7d136b1
if ($PSBoundParameters.Verbose) {Write-Verbose "SQL Error: $Err"} #Shiyang, add the verbose output of exception - This also defeats Powershell:
Lines 488 to 494 in 7d136b1
switch ($ErrorActionPreference.tostring()) { {'SilentlyContinue','Ignore' -contains $_} {} 'Stop' { Throw $Err } 'Continue' { Throw $Err} Default { Throw $Err} } - If L478 throws, then - as far as I can see - there is no scenario in which the script should continue. What is happening is the script moves on to
Line 526 in 7d136b1
$ds.Tables[0].Columns.Add($Column) You cannot call a method on a null-valued expression.
Expected behaviour when run with -EA SilentlyContinue and -EV set:
- EV is populated with error representing
VIEW DATABASE STATE permission denied in database 'master'.
- Script returns control to caller after completing the
finally
block atLines 512 to 519 in 7d136b1
Finally { #Close the connection if(-not $PSBoundParameters.ContainsKey('SQLConnection')) { $conn.Close() } }