PHP / MySQL插入失败但没有错误消息,语法看起来正确

时间:2017-08-09 20:42:28

标签: php mysql

此插入无效,但我没有收到错误消息:

insert into Company (companyname, address, city, stateorprovince, postalcode, region, country, website, notes, previous) values ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', '', '')

我看不出有什么问题。没有错误,但记录没有出现在表格中。有没有办法显示错误是什么?以下是表格结构的屏幕截图。tablestructure

1 个答案:

答案 0 :(得分:1)

您应该尝试@Qirel建议的内容,但这是适用于基于Linux的计算机的正确语句。 Windows不区分大小写。

insert into Company (CompanyName, Address, City, StateOrProvince, PostalCode, Region, Country, WebSite, notes, previous) values ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', '', '')