Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > 05cd670d8a02b2b4a0ffb1756f2e8308 > files > 8925

php-manual-zh-5.2.4-1mdv2008.1.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>PDO-&#62;errorCode()</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="PHP 手册"
HREF="index.html"><LINK
REL="UP"
TITLE="PDO Functions"
HREF="ref.pdo.html"><LINK
REL="PREVIOUS"
TITLE="PDO->__construct()"
HREF="function.pdo-construct.html"><LINK
REL="NEXT"
TITLE="PDO->errorInfo()"
HREF="function.pdo-errorinfo.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=UTF-8"></HEAD
><BODY
CLASS="refentry"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP 手册</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.pdo-construct.html"
ACCESSKEY="P"
>上一页</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.pdo-errorinfo.html"
ACCESSKEY="N"
>下一页</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.PDO-errorCode"
></A
>PDO-&#62;errorCode()</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN176455"
></A
><P
>    (no version information, might be only in CVS)</P
>PDO-&#62;errorCode()&nbsp;--&nbsp;
   Fetch the SQLSTATE associated with the last operation on the database handle
  </DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN176458"
></A
><H2
>说明</H2
>class <B
CLASS="classname"
>PDO</B
> { <BR
></BR
>string <B
CLASS="methodname"
>errorCode</B
> ( void  )<BR
></BR
>}</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN176467"
></A
><H2
>返回值</H2
><P
>&#13;   Returns a SQLSTATE, a five-character alphanumeric identifier defined in
   the ANSI SQL-92 standard.  Briefly, an SQLSTATE consists of a
   two-character class value followed by a three-character subclass value. A
   class value of 01 indicates a warning and is accompanied by a return code
   of SQL_SUCCESS_WITH_INFO. Class values other than '01', except for the
   class 'IM', indicate an error.  The class 'IM' is specific to warnings
   and errors that derive from the implementation of PDO (or perhaps ODBC,
   if you're using the ODBC driver) itself.  The subclass value '000' in any
   class indicates that there is no subclass for that SQLSTATE.
  </P
><P
>&#13;   <A
HREF="function.pdo-errorcode.html"
>PDO-&#62;errorCode()</A
> only retrieves error codes for operations
   performed directly on the database handle. If you create a PDOStatement
   object through <A
HREF="function.pdo-prepare.html"
>PDO-&#62;prepare()</A
> or
   <A
HREF="function.pdo-query.html"
>PDO-&#62;query()</A
> and invoke an error on the statement
   handle, <A
HREF="function.pdo-errorcode.html"
>PDO-&#62;errorCode()</A
> will not reflect that error.
   You must call <A
HREF="function.pdostatement-errorcode.html"
>PDOStatement-&#62;errorCode()</A
> to return the error
   code for an operation performed on a particular statement handle.
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN176476"
></A
><H2
>范例</H2
><P
>&#13;   <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN176479"
></A
><P
><B
>例 1. Retrieving a SQLSTATE code</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><code><font color="#000000">
<font color="#0000BB">&lt;?php<br /></font><font color="#FF8000">/* Provoke an error -- the BONES table does not exist */<br /></font><font color="#0000BB">$dbh</font><font color="#007700">-&gt;</font><font color="#0000BB">exec</font><font color="#007700">(</font><font color="#DD0000">"INSERT INTO bones(skull) VALUES ('lucy')"</font><font color="#007700">);<br /><br />echo </font><font color="#DD0000">"\nPDO::errorCode(): "</font><font color="#007700">;<br />print </font><font color="#0000BB">$dbh</font><font color="#007700">-&gt;</font><font color="#0000BB">errorCode</font><font color="#007700">();<br /></font><font color="#0000BB">?&gt;</font>
</font>
</code></TD
></TR
></TABLE
><P
>上例将输出:</P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><PRE
CLASS="screen"
>PDO::errorCode(): 42S02</PRE
></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
>
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN176484"
></A
><H2
>参见</H2
><P
>&#13;   <P
></P
><TABLE
BORDER="0"
><TBODY
><TR
><TD
><A
HREF="function.pdo-errorinfo.html"
>PDO-&#62;errorInfo()</A
></TD
></TR
><TR
><TD
><A
HREF="function.pdostatement-errorcode.html"
>PDOStatement-&#62;errorCode()</A
></TD
></TR
><TR
><TD
><A
HREF="function.pdostatement-errorinfo.html"
>PDOStatement-&#62;errorInfo()</A
></TD
></TR
></TBODY
></TABLE
><P
></P
>
  </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.pdo-construct.html"
ACCESSKEY="P"
>上一页</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>起始页</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.pdo-errorinfo.html"
ACCESSKEY="N"
>下一页</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>PDO-&#62;__construct()</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.pdo.html"
ACCESSKEY="U"
>上一级</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>PDO-&#62;errorInfo()</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>