在我的 C# 项目中,我需要将一些空值插入到 UniqueIdentifier 列。
对于城市 Guid 字段、州 Guid 字段,如果没有可用的值(唯一标识符),我应该能够插入空值。我收到以下错误
“从字符串转换为唯一标识符时转换失败。”
这是我的代码。
string Query = @"INSERT INTO mytable
(table_GUID,
Date,
city_GUID,
state_GUID,
)
VALUES
('" + tableGUID + @"',
'" + Date + @"',
'" + cityGUID + @"',
'" + stateGUID + @"'
)
string insert = sql.executeNonQuery(Query);