SQLite3::lastErrorMsg

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SQLite3::lastErrorMsg返回描述最近失败的 SQLite 请求的英文文本

描述

public SQLite3::lastErrorMsg(): string

返回描述最近失败的 SQLite 请求的英文文本。

参数

此函数没有参数。

返回值

返回一个英文字符串,描述最近失败的 SQLite 请求。

添加注释

用户贡献的注释 1 条注释

shafyxl at gmail dot com
6 年前
$db= new SQLite3('db1.db');
$results= $db->query('SELECT * FROM table1');
if($results==FALSE)
{
echo "获取错误 ".$db->lastErrorMsg();
}
else
{
while ($row= $results->fetchArray())
{
To Top