Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PDO sync with EN #1983

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions reference/pdo/constants.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: daf4cc624df3c21d472149725feb377b1beedb04 Maintainer: yannick Status: ready -->
<!-- EN-Revision: 9d792d3c559fb0df638d3d8c649de7e02861cc4d Maintainer: yannick Status: ready -->
<!-- Reviewed: no -->

<appendix xml:id="pdo.constants" xmlns="http://docbook.org/ns/docbook">
Expand Down Expand Up @@ -590,7 +590,9 @@ if ($db->getAttribute(PDO::ATTR_DRIVER_NAME) == 'mysql') {
</term>
<listitem>
<simpara>
Force toutes les valeurs lues pour être traitées comme des chaînes.
Force toutes les valeurs récupérées (sauf &null;) à être traitées comme des chaînes.
Les valeurs &null; restent inchangées, sauf si <constant>PDO::ATTR_ORACLE_NULLS</constant>
est défini sur <constant>PDO::NULL_TO_STRING</constant>.
</simpara>
</listitem>
</varlistentry>
Expand Down
11 changes: 6 additions & 5 deletions reference/pdo/pdo/setattribute.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: c60137e9d56c40861f6235d60c4553937c77af22 Maintainer: yannick Status: ready -->
<!-- EN-Revision: 9d792d3c559fb0df638d3d8c649de7e02861cc4d Maintainer: yannick Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="pdo.setattribute" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
Expand Down Expand Up @@ -137,10 +137,11 @@
<term><constant>PDO::ATTR_STRINGIFY_FETCHES</constant></term>
<listitem>
<para>
Détermine si les valeurs numériques sont à convertir en chaînes de
caractères lors de la récupération.
Prend une valeur de type <type>bool</type>: &true; pour activer et
&false; pour désactiver. <!-- By default, ??? TODO. -->
Contrôle si les valeurs récupérées (sauf &null;) sont converties en chaînes.
Accepte une valeur de type <type>bool</type> : &true; pour activer et &false;
pour désactiver (valeur par défaut).
Les valeurs &null; restent inchangées, sauf si <constant>PDO::ATTR_ORACLE_NULLS</constant>
est défini sur <constant>PDO::NULL_TO_STRING</constant>.
</para>
</listitem>
</varlistentry>
Expand Down