我正在尝试通过 MySql/.NET 连接器使用 .Net 执行 INSERT INTO 查询。查询使用参数。这很简单:
INSERT INTO post (
ID, content, post_url, blogID, title, addedOn,
updatedDate, commentsFeedURL, active, viewCount,
commentCount, languageID, authorName, postDate,
posRating, negRating, adult)
VALUES(
@ID, @content, @post_url, @blogID, @title, @addedOn,
@updatedDate, @commentsFeedURL, @active, @viewCount,
@commentCount, @languageID, @authorName, @postDate,
@posRating, @negRating, @adult)
当我运行它(所有参数都已正确分配)时,我收到一个错误
“列‘post_url’不能为空”
但它不是 Null。这是参数 post_url 中的值
http://abcd.wordpress.com/2007/08/13/%e0%a4%a6%e0%a5%8b-%e0%a4%ae%e0%a4%bf%e0%a4%a8%e0%a4%9f-%e0%a4%95%e0%a4%be-%e0%a4%a7%e0%a5%8d%e0%a4%af%e0%a4%be%e0%a4%a8/
这是我用来将参数分配给 SQL 查询的代码
cmd.Parameters.AddWithValue("post_url", postOld.URL);
我出现这种行为的原因可能是什么?
最佳答案
好的伙计们,我终于找到了正确的答案。
问题很简单,在 MySQL 查询中,参数用“?”标记。不是 '@'。不幸的是,许多查询似乎运行良好(它们不是)使用“@”,所以当出现问题时人们会发现这一点。
感谢您的所有回答。我重新编写了这样的查询:
INSERT INTO post (ID, content, post_url, blogID, title, addedOn, updatedDate, commentsFeedURL, active, viewCount, commentCount, languageID, authorName, postDate, posRating, negRating, adult)" +
" VALUES(?ID, ?content, ?post_url, ?blogID, ?title, ?addedOn, ?updatedDate, ?commentsFeedURL, ?active, ?viewCount, ?commentCount, ?languageID, ?authorName, ?postDate, ?posRating, ?negRating, ?adult)
它奏效了。
关于c# - MySql 说对于非空的列,列不能为空! [使用命名参数],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1242466/