<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.pdo.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'pdo.constants.php',
    1 => 'Predefined Constants',
    2 => 'Predefined Constants',
  ),
  'up' => 
  array (
    0 => 'book.pdo.php',
    1 => 'PDO',
  ),
  'prev' => 
  array (
    0 => 'pdo.configuration.php',
    1 => 'Runtime Configuration',
  ),
  'next' => 
  array (
    0 => 'pdo.constants.fetch-modes.php',
    1 => 'Fetch Modes',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/pdo/constants.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/pdo.constants.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="pdo.constants" class="appendix">
 <h1 class="title">Predefined Constants</h1>
<h2>Table of Contents</h2><ul class="chunklist chunklist_appendix"><li><a href="pdo.constants.fetch-modes.php">Fetch Modes</a></li></ul>

 <p class="simpara">
The constants below are defined by this extension, and
will only be available when the extension has either
been compiled into PHP or dynamically loaded at runtime.
</p>

 




 <div id="pdo.constants.cursors" class="section">
  <h2 class="title">Cursors</h2>

  <p class="simpara">
   See also <strong><code><a href="pdo.constants.php#pdo.constants.attr-cursor-name">PDO::ATTR_CURSOR_NAME</a></code></strong>.
  </p>

  <dl>
   
    <dt id="pdo.constants.fetch-ori-next">
     <strong><code><a href="pdo.constants.php#pdo.constants.fetch-ori-next">PDO::FETCH_ORI_NEXT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fetch the next row in the result set. Valid only for scrollable cursors.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.fetch-ori-prior">
     <strong><code><a href="pdo.constants.php#pdo.constants.fetch-ori-prior">PDO::FETCH_ORI_PRIOR</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fetch the previous row in the result set. Valid only for scrollable
      cursors.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.fetch-ori-first">
     <strong><code><a href="pdo.constants.php#pdo.constants.fetch-ori-first">PDO::FETCH_ORI_FIRST</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fetch the first row in the result set. Valid only for scrollable cursors.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.fetch-ori-last">
     <strong><code><a href="pdo.constants.php#pdo.constants.fetch-ori-last">PDO::FETCH_ORI_LAST</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fetch the last row in the result set. Valid only for scrollable cursors.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.fetch-ori-abs">
     <strong><code><a href="pdo.constants.php#pdo.constants.fetch-ori-abs">PDO::FETCH_ORI_ABS</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fetch the requested row by row number from the result set. Valid only
      for scrollable cursors.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.fetch-ori-rel">
     <strong><code><a href="pdo.constants.php#pdo.constants.fetch-ori-rel">PDO::FETCH_ORI_REL</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fetch the requested row by relative position from the current position
      of the cursor in the result set. Valid only for scrollable cursors.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.cursor-fwdonly">
     <strong><code><a href="pdo.constants.php#pdo.constants.cursor-fwdonly">PDO::CURSOR_FWDONLY</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Create a <span class="classname"><a href="class.pdostatement.php" class="classname">PDOStatement</a></span> object with a forward-only cursor.  This is the
      default cursor choice, as it is the fastest and most common data access
      pattern in PHP.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.cursor-scroll">
     <strong><code><a href="pdo.constants.php#pdo.constants.cursor-scroll">PDO::CURSOR_SCROLL</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Create a <span class="classname"><a href="class.pdostatement.php" class="classname">PDOStatement</a></span> object with a scrollable cursor.
      Pass the <strong><code><a href="pdo.constants.php#pdo.constants.fetch-ori-next">PDO::FETCH_ORI_<span class="replaceable">*</span></a></code></strong>
      constants to control the rows fetched from the result set.
     </span>
    </dd>
   
  </dl>
 </div>

 <div class="section">
  <h2 class="title">Other Constants</h2>
  <dl>
   
    <dt id="pdo.constants.param-bool">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-bool">PDO::PARAM_BOOL</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Represents a boolean data type.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-null">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-null">PDO::PARAM_NULL</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Represents the SQL NULL data type.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-int">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-int">PDO::PARAM_INT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Represents the SQL INTEGER data type.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-str">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-str">PDO::PARAM_STR</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Represents the SQL CHAR, VARCHAR, or other string data type.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-str-natl">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-str-natl">PDO::PARAM_STR_NATL</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Flag to denote a string uses the national character set.
     </span>
     <span class="simpara">
      Available as of PHP 7.2.0
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-str-char">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-str-char">PDO::PARAM_STR_CHAR</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Flag to denote a string uses the regular character set.
     </span>
     <span class="simpara">
      Available as of PHP 7.2.0
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-lob">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-lob">PDO::PARAM_LOB</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Represents the SQL large object data type.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-stmt">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-stmt">PDO::PARAM_STMT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Represents a recordset type.  Not currently supported by any drivers.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-input-output">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-input-output">PDO::PARAM_INPUT_OUTPUT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Specifies that the parameter is an INOUT parameter for a stored
      procedure. This constant must be bitwise-ORed with one of the
      <strong><code><a href="pdo.constants.php#pdo.constants.param-bool">PDO::PARAM_<span class="replaceable">*</span></a></code></strong> constants.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-autocommit">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-autocommit">PDO::ATTR_AUTOCOMMIT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      If this value is <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>, PDO attempts to disable autocommit so that the
      connection begins a transaction.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-prefetch">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-prefetch">PDO::ATTR_PREFETCH</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Setting the prefetch size allows balancing speed against memory
      usage for an application.  Not all database/driver combinations support
      setting of the prefetch size.  A larger prefetch size results in
      increased performance at the cost of higher memory usage.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-timeout">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-timeout">PDO::ATTR_TIMEOUT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Sets the timeout value in seconds for communications with the database.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-errmode">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-errmode">PDO::ATTR_ERRMODE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      See the <a href="pdo.error-handling.php" class="link">Errors and error
      handling</a> section for more information about this attribute.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-server-version">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-server-version">PDO::ATTR_SERVER_VERSION</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      This is a read only attribute; it will return information about the
      version of the database server to which PDO is connected.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-client-version">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-client-version">PDO::ATTR_CLIENT_VERSION</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      This is a read only attribute; it will return information about the
      version of the client libraries that the PDO driver is using.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-server-info">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-server-info">PDO::ATTR_SERVER_INFO</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      This is a read only attribute; it will return some meta information about the
      database server to which PDO is connected.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-connection-status">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-connection-status">PDO::ATTR_CONNECTION_STATUS</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">

     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-case">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-case">PDO::ATTR_CASE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Force column names to a specific case specified by the
      <strong><code><a href="pdo.constants.php#pdo.constants.case-natural">PDO::CASE_<span class="replaceable">*</span></a></code></strong>
      constants.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-cursor-name">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-cursor-name">PDO::ATTR_CURSOR_NAME</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Get or set the name to use for a cursor.  Most useful when using
      scrollable cursors and positioned updates.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-cursor">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-cursor">PDO::ATTR_CURSOR</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Selects the cursor type.  PDO currently supports either
      <strong><code><a href="pdo.constants.php#pdo.constants.cursor-fwdonly">PDO::CURSOR_FWDONLY</a></code></strong> or
      <strong><code><a href="pdo.constants.php#pdo.constants.cursor-scroll">PDO::CURSOR_SCROLL</a></code></strong>.
      Unless one has a need for scrollable cursors, one should use the
      <strong><code><a href="pdo.constants.php#pdo.constants.cursor-fwdonly">PDO::CURSOR_FWDONLY</a></code></strong> cursor mode.
     </span>
    </dd>
   

   
    <dt id="pdo.constants.attr-driver-name">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-driver-name">PDO::ATTR_DRIVER_NAME</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Returns the name of the driver.
     </span>
     <div class="example" id="example-1">
      <p><strong>Example #1 using <strong><code><a href="pdo.constants.php#pdo.constants.attr-driver-name">PDO::ATTR_DRIVER_NAME</a></code></strong></strong></p>
      <div class="example-contents">
 <div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /> </span><span style="color: #007700">if (</span><span style="color: #0000BB">$db</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getAttribute</span><span style="color: #007700">(</span><span style="color: #0000BB">PDO</span><span style="color: #007700">::</span><span style="color: #0000BB">ATTR_DRIVER_NAME</span><span style="color: #007700">) == </span><span style="color: #DD0000">'mysql'</span><span style="color: #007700">) {<br />   echo </span><span style="color: #DD0000">"Running on mysql; doing something mysql specific here\n"</span><span style="color: #007700">;<br /> }<br /> </span><span style="color: #0000BB">?&gt;</span></span></code></div>
      </div>

     </div>
    </dd>
   
   
    <dt id="pdo.constants.attr-oracle-nulls">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-oracle-nulls">PDO::ATTR_ORACLE_NULLS</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Convert empty strings to SQL NULL values on data fetches.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-persistent">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-persistent">PDO::ATTR_PERSISTENT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Request a persistent connection, rather than creating a new connection.
      See <a href="pdo.connections.php" class="link">Connections and Connection
      management</a> for more information on this attribute.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-statement-class">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-statement-class">PDO::ATTR_STATEMENT_CLASS</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Sets the class name of which statements are returned as.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-fetch-catalog-names">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-fetch-catalog-names">PDO::ATTR_FETCH_CATALOG_NAMES</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Prepend the containing catalog name to each column name returned in the
      result set. The catalog name and column name are separated by a decimal
      (.) character.  Support of this attribute is at the driver level; it may
      not be supported by the driver in use.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-fetch-table-names">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-fetch-table-names">PDO::ATTR_FETCH_TABLE_NAMES</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Prepend the containing table name to each column name returned in the
      result set. The table name and column name are separated by a decimal (.)
      character. Support of this attribute is at the driver level; it may
      not be supported by the driver in use.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-stringify-fetches">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-stringify-fetches">PDO::ATTR_STRINGIFY_FETCHES</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Forces all fetched values (except <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>) to be treated as strings.
      <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong> values remain unchanged unless <strong><code><a href="pdo.constants.php#pdo.constants.attr-oracle-nulls">PDO::ATTR_ORACLE_NULLS</a></code></strong>
      is set to <strong><code><a href="pdo.constants.php#pdo.constants.null-to-string">PDO::NULL_TO_STRING</a></code></strong>.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-max-column-len">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-max-column-len">PDO::ATTR_MAX_COLUMN_LEN</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Sets the maximum column name length.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-default-fetch-mode">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-default-fetch-mode">PDO::ATTR_DEFAULT_FETCH_MODE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">

     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-emulate-prepares">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-emulate-prepares">PDO::ATTR_EMULATE_PREPARES</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">

     </span>
    </dd>
   
   
    <dt id="pdo.constants.attr-default-str-param">
     <strong><code><a href="pdo.constants.php#pdo.constants.attr-default-str-param">PDO::ATTR_DEFAULT_STR_PARAM</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Sets the default string parameter type, this can be one of <strong><code><a href="pdo.constants.php#pdo.constants.param-str-natl">PDO::PARAM_STR_NATL</a></code></strong>
      and <strong><code><a href="pdo.constants.php#pdo.constants.param-str-char">PDO::PARAM_STR_CHAR</a></code></strong>.
     </span>
     <span class="simpara">
      Available as of PHP 7.2.0.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.errmode-silent">
     <strong><code><a href="pdo.constants.php#pdo.constants.errmode-silent">PDO::ERRMODE_SILENT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Do not raise an error or exception if an error occurs.
      The developer is expected to explicitly check for errors.
      Prior to PHP 8.0.0, this was the default mode.
      See <a href="pdo.error-handling.php" class="link">Errors and error handling</a>
      for more information about this attribute.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.errmode-warning">
     <strong><code><a href="pdo.constants.php#pdo.constants.errmode-warning">PDO::ERRMODE_WARNING</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Issue a PHP <strong><code><a href="errorfunc.constants.php#constant.e-warning">E_WARNING</a></code></strong> message if an error occurs.
      See <a href="pdo.error-handling.php" class="link">Errors and error handling</a>
      for more information about this attribute.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.errmode-exception">
     <strong><code><a href="pdo.constants.php#pdo.constants.errmode-exception">PDO::ERRMODE_EXCEPTION</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Throw a <span class="classname"><a href="class.pdoexception.php" class="classname">PDOException</a></span> if an error occurs.
      This is the default mode as of PHP 8.0.0.
      See <a href="pdo.error-handling.php" class="link">Errors and error handling</a>
      for more information about this attribute.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.case-natural">
     <strong><code><a href="pdo.constants.php#pdo.constants.case-natural">PDO::CASE_NATURAL</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Leave column names as returned by the database driver.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.case-lower">
     <strong><code><a href="pdo.constants.php#pdo.constants.case-lower">PDO::CASE_LOWER</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Force column names to lower case.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.case-upper">
     <strong><code><a href="pdo.constants.php#pdo.constants.case-upper">PDO::CASE_UPPER</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Force column names to upper case.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.null-natural">
     <strong><code><a href="pdo.constants.php#pdo.constants.null-natural">PDO::NULL_NATURAL</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">

     </span>
    </dd>
   
   
    <dt id="pdo.constants.null-empty-string">
     <strong><code><a href="pdo.constants.php#pdo.constants.null-empty-string">PDO::NULL_EMPTY_STRING</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">

     </span>
    </dd>
   
   
    <dt id="pdo.constants.null-to-string">
     <strong><code><a href="pdo.constants.php#pdo.constants.null-to-string">PDO::NULL_TO_STRING</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">

     </span>
    </dd>
   
   
    <dt id="pdo.constants.err-none">
     <strong><code><a href="pdo.constants.php#pdo.constants.err-none">PDO::ERR_NONE</a></code></strong>
     (<span class="type"><a href="language.types.string.php" class="type string">string</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Corresponds to SQLSTATE <code class="literal">&#039;00000&#039;</code>, meaning that the SQL
      statement was successfully issued with no errors or warnings.
      This constant is a convenience constant to help when checking
      <span class="methodname"><a href="pdo.errorcode.php" class="methodname">PDO::errorCode()</a></span> or
      <span class="methodname"><a href="pdostatement.errorcode.php" class="methodname">PDOStatement::errorCode()</a></span> to determine if an error
      occurred.
      This is usually known by examining the return code from the method
      that raised the error condition anyway.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-evt-alloc">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-evt-alloc">PDO::PARAM_EVT_ALLOC</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Allocation event
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-evt-free">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-evt-free">PDO::PARAM_EVT_FREE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Deallocation event
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-evt-exec-pre">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-evt-exec-pre">PDO::PARAM_EVT_EXEC_PRE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Event triggered prior to execution of a prepared statement.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-evt-exec-post">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-evt-exec-post">PDO::PARAM_EVT_EXEC_POST</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Event triggered subsequent to execution of a prepared statement.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-evt-fetch-pre">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-evt-fetch-pre">PDO::PARAM_EVT_FETCH_PRE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Event triggered prior to fetching a result from a resultset.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-evt-fetch-post">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-evt-fetch-post">PDO::PARAM_EVT_FETCH_POST</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Event triggered subsequent to fetching a result from a resultset.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.param-evt-normalize">
     <strong><code><a href="pdo.constants.php#pdo.constants.param-evt-normalize">PDO::PARAM_EVT_NORMALIZE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Event triggered during bound parameter registration
      allowing the driver to normalize the parameter name.
     </span>
    </dd>
   
   
    <dt id="pdo.constants.sqlite-deterministic">
     <strong><code><a href="pdo.constants.php#pdo.constants.sqlite-deterministic">PDO::SQLITE_DETERMINISTIC</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
       Specifies that a function created with <span class="methodname"><a href="pdo.sqlitecreatefunction.php" class="methodname">PDO::sqliteCreateFunction()</a></span>
       is deterministic, i.e. it always returns the same result given the same inputs within
       a single SQL statement. (Available as of PHP 7.1.4.)
     </span>
    </dd>
   
  </dl>
 </div>
</div>
<?php manual_footer($setup); ?>