Skip to content

Commit

Permalink
SQLite3 section sync with EN (#890)
Browse files Browse the repository at this point in the history
  • Loading branch information
devnexen authored Apr 18, 2024
1 parent 12047ec commit b584e51
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions reference/sqlite3/sqlite3/construct.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 855bfee2f3db70d7dbb4c60c7c4a4efa567f1c60 Maintainer: yannick Status: ready -->
<!-- EN-Revision: 61374bbe228e8e9c55a24aba59a1e2bb2a871148 Maintainer: yannick Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="sqlite3.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
Expand Down Expand Up @@ -51,19 +51,19 @@
<itemizedlist>
<listitem>
<para>
<literal>SQLITE3_OPEN_READONLY</literal> : Ouvre la base de données
<constant>SQLITE3_OPEN_READONLY</constant> : Ouvre la base de données
en lecture seule.
</para>
</listitem>
<listitem>
<para>
<literal>SQLITE3_OPEN_READWRITE</literal> : Ouvre la base de données
<constant>SQLITE3_OPEN_READWRITE</constant> : Ouvre la base de données
en lecture et en écriture.
</para>
</listitem>
<listitem>
<para>
<literal>SQLITE3_OPEN_CREATE</literal> : Crée la base de données si
<constant>SQLITE3_OPEN_CREATE</constant> : Crée la base de données si
elle n'existe pas.
</para>
</listitem>
Expand Down
8 changes: 4 additions & 4 deletions reference/sqlite3/sqlite3/open.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 855bfee2f3db70d7dbb4c60c7c4a4efa567f1c60 Maintainer: yannick Status: ready -->
<!-- EN-Revision: 61374bbe228e8e9c55a24aba59a1e2bb2a871148 Maintainer: yannick Status: ready -->
<!-- Reviewed: yes -->
<refentry xml:id="sqlite3.open" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
Expand Down Expand Up @@ -44,19 +44,19 @@
<itemizedlist>
<listitem>
<para>
<literal>SQLITE3_OPEN_READONLY</literal> : Ouvre la base de données
<constant>SQLITE3_OPEN_READONLY</constant> : Ouvre la base de données
en lecture seule.
</para>
</listitem>
<listitem>
<para>
<literal>SQLITE3_OPEN_READWRITE</literal> : Ouvre la base de données
<constant>SQLITE3_OPEN_READWRITE</constant> : Ouvre la base de données
en lecture et écriture.
</para>
</listitem>
<listitem>
<para>
<literal>SQLITE3_OPEN_CREATE</literal> : Crée la base de données
<constant>SQLITE3_OPEN_CREATE</constant> : Crée la base de données
si elle n'existe pas.
</para>
</listitem>
Expand Down
12 changes: 6 additions & 6 deletions reference/sqlite3/sqlite3result/fetcharray.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 855bfee2f3db70d7dbb4c60c7c4a4efa567f1c60 Maintainer: yannick Status: ready -->
<!-- EN-Revision: 61374bbe228e8e9c55a24aba59a1e2bb2a871148 Maintainer: yannick Status: ready -->
<!-- Reviewed: yes -->
<refentry xml:id="sqlite3result.fetcharray" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
Expand Down Expand Up @@ -30,25 +30,25 @@
<listitem>
<para>
Contrôle la façon dont la prochaine ligne doit être retournée à
la fonction appelante. Cette valeur peut être <literal>SQLITE3_ASSOC</literal>,
<literal>SQLITE3_NUM</literal>, ou <literal>SQLITE3_BOTH</literal>.
la fonction appelante. Cette valeur peut être <constant>SQLITE3_ASSOC</constant>,
<constant>SQLITE3_NUM</constant>, ou <constant>SQLITE3_BOTH</constant>.
<itemizedlist>
<listitem>
<para>
<literal>SQLITE3_ASSOC</literal> : Retourne un tableau indexé par le
<constant>SQLITE3_ASSOC</constant> : Retourne un tableau indexé par le
nom de la colonne, tel que retourné dans le jeu de résultats correspondant.
</para>
</listitem>
<listitem>
<para>
<literal>SQLITE3_NUM</literal> : Retourne un tableau indexé par le
<constant>SQLITE3_NUM</constant> : Retourne un tableau indexé par le
numéro de la colonne, tel que retourné dans le jeu de résultats, en
commençant par la colonne 0.
</para>
</listitem>
<listitem>
<para>
<literal>SQLITE3_BOTH</literal> : Retourne un tableau indexé par
<constant>SQLITE3_BOTH</constant> : Retourne un tableau indexé par
le nom et le numéro de la colonne, tel que retourné par le jeu de
résultats, en commençant par la colonne 0.
</para>
Expand Down

0 comments on commit b584e51

Please sign in to comment.