<?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 => 'de',
  ),
  'this' => 
  array (
    0 => 'sqlite3.constants.php',
    1 => 'Vordefinierte Konstanten',
    2 => 'Vordefinierte Konstanten',
  ),
  'up' => 
  array (
    0 => 'book.sqlite3.php',
    1 => 'SQLite3',
  ),
  'prev' => 
  array (
    0 => 'sqlite3.configuration.php',
    1 => 'Laufzeit-Konfiguration',
  ),
  'next' => 
  array (
    0 => 'class.sqlite3.php',
    1 => 'SQLite3',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'de',
    '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">Vordefinierte Konstanten</h1>

 <p class="simpara">Folgende Konstanten werden von dieser
Erweiterung definiert und stehen nur zur Verfügung, wenn die Erweiterung entweder
statisch in PHP kompiliert oder dynamisch zur Laufzeit geladen
wurde.</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">
      Legt fest, dass die
      <span class="methodname"><a href="sqlite3result.fetcharray.php" class="methodname">Sqlite3Result::fetchArray()</a></span>-Methode eine
      assoziative Liste zurückgeben soll. Die Liste wird durch den
      Spaltennamen indiziert, wie er in dem Anfrageergebnis zurückgegeben
      wurde.
     </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">
      Legt fest, dass die
      <span class="methodname"><a href="sqlite3result.fetcharray.php" class="methodname">Sqlite3Result::fetchArray()</a></span>-Methode eine Liste
      zurückgeben soll, die durch die Spaltennummer indiziert wird, wie sie in
      dem Anfrageergebnis zurückgegeben wurde, beginnend mit Spalte 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">
      Legt fest, dass die
      <span class="methodname"><a href="sqlite3result.fetcharray.php" class="methodname">Sqlite3Result::fetchArray()</a></span>-Methode eine Liste
      zurückgeben soll, die sowohl durch den Spaltennamen, als auch durch die
      Spaltennummer indiziert wird. Die geschieht analog dazu, wie es im
      Anfrageergebnis zurückgegeben wurde, beginnend mit Spalte 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äsentiert die SQLite3 &#039;INTEGER&#039;-Speicherklasse.
     </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äsentiert die SQLite3 &#039;REAL (FLOAT)&#039;-Speicherklasse.
     </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äsentiert die SQLite3 &#039;TEXT&#039;-Speicherklasse.
     </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äsentiert die SQLite3 &#039;BLOB&#039;-Speicherklasse.
     </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äsentiert die SQLite3 &#039;NULL&#039;-Speicherklasse.
     </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">
      Legt fest, dass die SQLite3-Datenbank nur für den lesenden Zugriff
      geöffnet wird.
     </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">
      Legt fest, dass die SQLite3 Datenbank für den Lese- und Schreibzugriff
      geöffnet wird.
     </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">
      Legt fest, dass die SQLite3 Datenbank vor dem Öffnen angelegt wird, wenn
      diese noch nicht existiert.
     </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">
      Gibt an, dass eine Funktion, die mit
      <span class="function"><a href="sqlite3.createfunction.php" class="function">SQLite3::createFunction()</a></span> erzeugt wurde,
      deterministisch ist, d.h. dass sie in einer einzelnen SQL-Anweisung
      immer dasselbe Ergebnis für dieselben Eingaben liefert. (Verfügbar von
      PHP 7.1.4 an.)
     </span>
    </dd>
   
  </dl>
 </p>
</div>
<?php manual_footer($setup); ?>