- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
mysql_query("INSERT INTO accounting(transid, unixtime, username, description, amount, type, time) VALUES('$randomtransid', '0', '$yti', 'BLVD Offer Completion', '$theamount', 'points', '$dateandtime')");
上面的示例代码是我的 MySQL 查询,但每次刷新页面时它都不会添加到 MySQL 数据库中...
我能做什么?
============已解决:
添加“mysql_error();”后,
这是错误:
Query failed: Duplicate entry ... for key 'uniqueness'
我通过更改数据库表的结构解决了这个问题。
谢谢
============
最佳答案
表名后需要有一个空格。否则它看起来像一个函数。
mysql_query("INSERT INTO accounting(transid, unixtime, username, description, amount, type, time) VALUES('$randomtransid', '0', '$yti', 'BLVD Offer Completion', '$theamount', 'points', '$dateandtime')");
^^^^^^^
HERE
应该是:
mysql_query("INSERT INTO accounting (transid, unixtime, username, description, amount, type, time) VALUES('$randomtransid', '0', '$yti', 'BLVD Offer Completion', '$theamount', 'points', '$dateandtime')");
一些注意事项:
如果您检查代码中的错误,您就会快速轻松地发现这一点。始终寻找并处理错误。对于您的情况,请调用 mysql_error()
就可以了。
You shouldn't use mysql_*
functions in new code 。它们不再维护and are officially deprecated 。请参阅red box ?了解 prepared statements相反,并使用 PDO ,或MySQLi -this article将帮助您决定哪个。如果您选择 PDO,here is a good tutorial .
由于我看不到您在代码中明确处理此问题,因此我必须假设您是敞开至SQL injections .
关于php - MySQL 错误 - 每次调用查询时未添加到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23316777/
在我们的数据库表上,我们使用两个唯一的非聚集索引来创建跨四个字段的唯一约束。我们使用两个,因为其中一个字段 ZipCode 是一个可为空的字段。如果表中存在一条包含 ZipCode 的 null 条目
我刚刚开始学习 Rails 3 教程,以便对框架有一点熟悉,但我在生成 schema.rb 时遇到了问题。我的操作系统是 Windows 7 x64、Ruby 1.9.2、MySQL2 gem 0.2
我是一名优秀的程序员,十分优秀!