gpt4 book ai didi

sql - Powershell 和 SQL 参数。如果为空字符串,则传递 DBNull

转载 作者:行者123 更新时间:2023-12-04 09:13:05 24 4
gpt4 key购买 nike

我得到了这个参数:

$objDbCmd.Parameters.Add("@telephone", [System.Data.SqlDbType]::VarChar, 18) | Out-Null;
$objDbCmd.Parameters["@telephone"].Value = $objUser.Telephone;

其中字符串 $objUser.Telephone可以为空。如果它是空的,我如何将其转换为 [DBNull]::Value ?

我试过:
if ([string]:IsNullOrEmpty($objUser.Telephone)) { $objUser.Telephone = [DBNull]::Value };

但这给了我错误:

Exception calling "ExecuteNonQuery" with "0" argument(s): "Failed to convert parameter value from a ResultPropertyValueCollection to a String."



如果我将其转换为字符串,它会插入一个空字符串 "" ,而不是 DBNull .

如何做到这一点?

谢谢。

最佳答案

在 PowerShell 中,您可以将空/空字符串视为 bool 值。

$x = $null
if ($x) { 'this wont print' }

$x = ""
if ($x) { 'this wont print' }

$x = "blah"
if ($x) { 'this will' }

所以......话虽如此,你可以这样做:
$Parameter.Value = $(if ($x) { $x } else { [DBNull]::Value })

但我更愿意将其封装在一个函数中,例如:
function CatchNull([String]$x) {
if ($x) { $x } else { [DBNull]::Value }
}

关于sql - Powershell 和 SQL 参数。如果为空字符串,则传递 DBNull,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/920991/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com