SQLite3::lastErrorMsg

(PHP 5 >= 5.3.0)

SQLite3::lastErrorMsg Returns English text describing the most recent failed SQLite request

Опис

public string SQLite3::lastErrorMsg ( void )

Returns English text describing the most recent failed SQLite request.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

Returns an English string describing the most recent failed SQLite request.

add a note add a note

User Contributed Notes 1 note

up
-4
shafyxl at gmail dot com
6 years ago
$db= new SQLite3('db1.db');
            $results= $db->query('SELECT * FROM table1');
            if($results==FALSE)
            {
                echo "Error in fetch ".$db->lastErrorMsg();
            }
            else
            {
                while ($row= $results->fetchArray())
                {
To Top