插入语句写错,少了单引号
比如下面代码
update("author=" . $author->realname)
这样是不对的
必须写成
update("author='" . $author->realname."'")
update("author=" . $author->realname)
update("author='" . $author->realname."'")
本文来源:SQLite数据库报错:no such column
本文地址:https://www.ys720.com/jiaocheng/4710.html
版权声明:本文采用[BY-NC-SA]协议进行授权,如无特别说明,转载请注明本文地址!