<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.sqlite3.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'sqlite3.constants.php',
    1 => 'Costanti predefinite',
    2 => 'Costanti predefinite',
  ),
  'up' => 
  array (
    0 => 'book.sqlite3.php',
    1 => 'SQLite3',
  ),
  'prev' => 
  array (
    0 => 'sqlite3.configuration.php',
    1 => 'Configurazione di Runtime',
  ),
  'next' => 
  array (
    0 => 'class.sqlite3.php',
    1 => 'SQLite3',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/sqlite3/constants.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="sqlite3.constants" class="appendix">
 <h1 class="title">Costanti predefinite</h1>

 <p class="simpara">
Queste costanti sono definite da questa estensione e 
sono disponibili solo se l&#039;estensione è stata compilata
nel PHP o se è stata caricata dinamicamente a runtime.
</p>
 <p class="para">
  <dl>
   
    <dt id="constant.sqlite3-assoc">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-assoc">SQLITE3_ASSOC</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 <span class="methodname"><a href="sqlite3result.fetcharray.php" class="methodname">Sqlite3Result::fetchArray()</a></span>
      method shall return an array indexed by column name as returned in the
      corresponding result set.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-num">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-num">SQLITE3_NUM</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 <span class="methodname"><a href="sqlite3result.fetcharray.php" class="methodname">Sqlite3Result::fetchArray()</a></span>
      method shall return an array indexed by column number as returned in the
      corresponding result set, starting at column 0.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-both">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-both">SQLITE3_BOTH</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 <span class="methodname"><a href="sqlite3result.fetcharray.php" class="methodname">Sqlite3Result::fetchArray()</a></span>
      method shall return an array indexed by both column name and number as
      returned in the corresponding result set, starting at column 0.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-integer">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-integer">SQLITE3_INTEGER</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 SQLite3 INTEGER storage class.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-float">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-float">SQLITE3_FLOAT</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 SQLite3 REAL (FLOAT) storage class.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-text">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-text">SQLITE3_TEXT</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 SQLite3 TEXT storage class.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-blob">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-blob">SQLITE3_BLOB</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 SQLite3 BLOB storage class.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-null">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-null">SQLITE3_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 SQLite3 NULL storage class.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-open-readonly">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-open-readonly">SQLITE3_OPEN_READONLY</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 SQLite3 database be opened for reading only.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-open-readwrite">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-open-readwrite">SQLITE3_OPEN_READWRITE</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 SQLite3 database be opened for reading and writing.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-open-create">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-open-create">SQLITE3_OPEN_CREATE</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 SQLite3 database be created if it does not already
      exist.
     </span>
    </dd>
   
   
    <dt id="constant.sqlite3-deterministic">
     <strong><code><a href="sqlite3.constants.php#constant.sqlite3-deterministic">SQLITE3_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="function"><a href="sqlite3.createfunction.php" class="function">SQLite3::createFunction()</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>
 </p>
</div>
<?php manual_footer($setup); ?>