PDO::errorInfo

Begonnen von Webfan, 13 Januar 2015, 07:38:59

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

Webfan

Hallo Olaf,
folgende Meldung:
ZitatFatal error:  Non-static method PDO::errorInfo() cannot be called statically in /**/includes/classes/Db.php on line 316


public static function sql_error()
{
$tmp=PDO::errorInfo();
return $tmp;

}


http://php.net/manual/en/pdo.errorinfo.php
ZitatPDO::errorInfo() only retrieves error information for operations performed directly on the database handle. If you create a PDOStatement object through PDO::prepare() or PDO::query() and invoke an error on the statement handle, PDO::errorInfo() will not reflect the error from the statement handle. You must call PDOStatement::errorInfo() to return the error information for an operation performed on a particular statement handle.
Oder Instanz verwenden $this->errorInfo() ???

Der Fehler tritt bei meinem Modul auf, Seite geht.

Viele Grüße
Till

Olaf

ist bei mir schon gefixt, kommt im nächsten Update mit
g

Olaf

Kein Support über PN, Mail etc.!
Bitte die Fragen im Forum stellen, nur so helfen die Antworten auch den anderen Usern.
Bitte auch die Boardsuche nicht vergessen, oft ist genau dein Problem schon an anderer Stelle gelöst worden!

Webfan