1
0
mirror of https://github.com/php/doc-es.git synced 2026-03-25 16:02:13 +01:00
Files
archived-doc-es/reference/sqlite/ini.xml
Pedro Antonio Gil Rodríguez 7146b2d88c Updated to the most recent version
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@324054 c90b9560-bf6c-de11-be94-00142212c4b1
2012-03-09 13:44:45 +00:00

90 lines
2.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: f052ac1bd73549125c3fc3dc68a36d4b0608a16d Maintainer: chuso Status: ready -->
<!-- Reviewed: no -->
<section xml:id="sqlite.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>&ConfigureOptions; de SQLite</title>
<tgroup cols="4">
<thead>
<row>
<entry>&Name;</entry>
<entry>&Default;</entry>
<entry>&Changeable;</entry>
<entry>Registro de cambios</entry>
</row>
</thead>
<tbody>
<row>
<entry><link linkend="ini.sqlite.assoc-case">sqlite.assoc_case</link></entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry>Disponible desde PHP 5.0.0.</entry>
</row>
</tbody>
</tgroup>
</table>
&ini.php.constants;
</para>
&ini.descriptions.title;
<para>
<variablelist>
<varlistentry xml:id="ini.sqlite.assoc-case">
<term>
<parameter>sqlite.assoc_case</parameter>
<type>int</type>
</term>
<listitem>
<para>
Indica si se utilizan índices hash con mayúsculas y minúsculas
(<literal>0</literal>), mayúsculas(<literal>1</literal>)
o minúsculas (<literal>2</literal>).
</para>
<para>
Esta opción es útil al buscar compatibilidad con otros sistemas de
bases de datos, donde los nombres de las columnas siempre se devuelven
en mayúsculas o minúsculas, independientemente de la forma real que tengan
los campos en su esquema de la base de datos.
</para>
<para>
La biblioteca <productname>SQLite</productname> devuelve los nombres de columna en su formato original
(como el que se haya usado en el esquema). Cuando
<parameter>sqlite.assoc_case</parameter> está habilitado a <literal>0</literal>
se mantendrá el formato original. Cuando se establece
<literal>1</literal> o <literal>2</literal>, PHP cambiará el formato
de las claves hash de las claves a mayúsculas o minúsculas respectivamente.
</para>
<para>
El uso de esta opción conlleva un ligero impacto de rendimiento, pero es MUCHO
más rápido que realizar esta conersación a mano usando código PHP.
</para>
</listitem>
</varlistentry>
</variablelist>
</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:"~/.phpdoc/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
-->