mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-03-29 20:32:10 +02:00
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@157737 c90b9560-bf6c-de11-be94-00142212c4b1
71 lines
1.9 KiB
XML
71 lines
1.9 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.6 $ -->
|
|
<!-- EN-Revision: 1.2 Maintainer: yannick Status: ready -->
|
|
<section id="sqlite.constants">
|
|
<title>Constantes prédéfinies</title>
|
|
<para>
|
|
Les fonctions <function>sqlite_fetch_array</function> et
|
|
<function>sqlite_current</function> utilisent des constantes pour spécifier
|
|
les différents types de résultats. Les constantes sont les suivantes :
|
|
</para>
|
|
<para>
|
|
<table>
|
|
<title>Constantes <productname>SQLite</productname></title>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>Constante</entry>
|
|
<entry>Signification</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry><constant>SQLITE_ASSOC</constant></entry>
|
|
<entry>
|
|
Les colonnes sont retournées dans le tableau, en utilisant
|
|
le nom de la colonne comme nom d'index.
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>SQLITE_BOTH</constant></entry>
|
|
<entry>
|
|
Les colonnes sont retournées dans le tableau, en utilisant
|
|
simultanément le nom de la colonne comme nom d'index et un
|
|
index numérique.
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>SQLITE_NUM</constant></entry>
|
|
<entry>
|
|
Les colonnes sont retournées dans le tableau, en utilisant
|
|
une indexation numérique. L'index commence à 0, pour identifier
|
|
le premier champ.
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</table>
|
|
</para>
|
|
</section>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|