<?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 => 'fr',
  ),
  'this' => 
  array (
    0 => 'sqlite3.constants.php',
    1 => 'Constantes pr&eacute;-d&eacute;finies',
    2 => 'Constantes pr&eacute;-d&eacute;finies',
  ),
  'up' => 
  array (
    0 => 'book.sqlite3.php',
    1 => 'SQLite3',
  ),
  'prev' => 
  array (
    0 => 'sqlite3.configuration.php',
    1 => 'Configuration &agrave; l\'ex&eacute;cution',
  ),
  'next' => 
  array (
    0 => 'class.sqlite3.php',
    1 => 'SQLite3',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'fr',
    '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">Constantes pré-définies</h1>

 <p class="simpara">Ces constantes sont définies par cette
extension, et ne sont disponibles que si cette extension a été compilée avec
PHP, ou bien chargée au moment de l&#039;exécution.</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">
      Spécifie que la méthode <span class="methodname"><a href="sqlite3result.fetcharray.php" class="methodname">Sqlite3Result::fetchArray()</a></span> doit retourner un
      tableau indexé par le nom de la colonne dans le jeu de résultats
      correspondant.
     </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">
      Spécifie que la méthode <span class="methodname"><a href="sqlite3result.fetcharray.php" class="methodname">Sqlite3Result::fetchArray()</a></span> doit retourner un
      tableau indexé par le numéro de la colonne dans le jeu de résultats
      correspondant, en commençant à la colonne 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">
      Spécifie que la méthode <span class="methodname"><a href="sqlite3result.fetcharray.php" class="methodname">Sqlite3Result::fetchArray()</a></span> doit retourner un
      tableau indexé par le nom et le numéro de la colonne dans le jeu de
      résultats correspondant, en commençant à la colonne 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">
      Représente la classe de stockage INTEGER de SQLite3.
     </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">
      Représente la classe de stockage REAL (FLOAT) de SQLite3.
     </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">
      Représente la classe de stockage TEXT de SQLite3.
     </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">
      Représente la classe de stockage BLOB de SQLite3.
     </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">
      Représente la classe de stockage NULL de SQLite3.
     </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">
      Spécifie que la base de données SQLite3 doit être ouverte en lecture seule.
     </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">
      Spécifie que la base de données SQLite3 doit être ouverte en lecture et
      en écriture.
     </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">
      Spécifie que la base de données SQLite3 doit être créée si elle n&#039;existe
      pas déjà.
     </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">
      Spécifie qu&#039;une fonction créée avec 
      <span class="function"><a href="sqlite3.createfunction.php" class="function">SQLite3::createFunction()</a></span> est déterministe, 
      c&#039;est-à-dire qu&#039;elle retourne toujours le même résultat étant donné les 
      mêmes entrées dans une seule instruction SQL. (disponible à partir de PHP 7.1.4)
     </span>
    </dd>
   
  </dl>
 </p>
</div>
<?php manual_footer($setup); ?>