PHP Manuál | ||
---|---|---|
Predchádzajúci | Nasledujúci |
(no version information, might be only in CVS)
PDO::errorCode -- Fetch the SQLSTATE associated with the last operation on the database handleVarovanie |
T�to funkcia je EXPERIMENT�LNA. Spr�vanie tejto funkcie, n�zov tejto funkcie a hoci�o in� zdokumentovan� o tejto funkcii sa m�e zmeni� bez pov�imnutia v bud�com vydan� PHP. Pou��vajte t�to funkcii na svoje vlastn� riziko. |
Returns a SQLSTATE, a five-character alphanumeric identifier defined in the ANSI SQL standard.
PDO::errorCode() only retrieves error codes 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::errorCode() will return PDO_ERR_NONE. You must call PDOStatement::errorCode() to return the error code for an operation performed on a particular statement handle.
Predchádzajúci | Domov | Nasledujúci |
PDO::__construct | Hore | PDO::errorInfo |