-
Notifications
You must be signed in to change notification settings - Fork 397
Traduccion library/sqlite3 #430
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
Changes from 1 commit
ce99ee4
3fb419a
a01739c
9adf6f5
793473f
45ca2ce
a2a021b
8c02d2f
6ccede0
98af293
2e0e84a
aa29ade
d07a55f
fe006af
22e267f
b0b5246
c9cadc5
87c0fa3
77bc1f4
0c43455
832ade3
a765ada
9f5b6f4
13f709c
58bfd38
1e4d1ee
e6a57cd
6aba76b
2eeef71
c3d7398
b9596cd
badb699
694e1c6
1fb3409
1fe0317
f9ddbe2
f9e5c21
1018280
ce65895
3603a91
4279d6a
22f480e
4a10eee
0b581a5
0e8aed3
e4d39c1
578766f
b466fe0
79733c3
8e29d02
f31e4bf
7fe3a62
9fb9e31
096701c
a95f158
acc2f46
57ac065
366e9ee
caa3611
d368fbc
fe1680c
b05e959
7a20a72
6618d0f
30bec25
48cb6a1
cecab43
6dcaef2
ee2654c
ad74ee8
55263e8
d219bd3
1e10dec
9005f1c
14849a3
6fccf12
8921584
b698936
3fcc69b
6d6762c
cb07fa6
60a9214
107a8ab
6d7e49c
b05bab1
464f9a7
666ce49
146be31
26be357
e94ec4c
364848e
9655f1b
600d659
c780054
ddb2f63
b938776
75b2aa7
6bc3103
b63c58b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -11,7 +11,7 @@ msgstr "" | |||||||||||||
"Project-Id-Version: Python 3.8\n" | ||||||||||||||
"Report-Msgid-Bugs-To: \n" | ||||||||||||||
"POT-Creation-Date: 2020-05-05 12:54+0200\n" | ||||||||||||||
"PO-Revision-Date: 2020-05-27 17:48-0500\n" | ||||||||||||||
"PO-Revision-Date: 2020-06-13 18:35-0500\n" | ||||||||||||||
"Language-Team: python-doc-es\n" | ||||||||||||||
"MIME-Version: 1.0\n" | ||||||||||||||
"Content-Type: text/plain; charset=UTF-8\n" | ||||||||||||||
|
@@ -227,10 +227,10 @@ msgid "" | |||||||||||||
msgstr "" | ||||||||||||||
"Configurarla hace que el módulo :mod:`sqlite3` analice el tipo declarado " | ||||||||||||||
"para cada columna que devuelve. Este convertira la primera palabra del tipo " | ||||||||||||||
"declarado, es decir, para *\"integer primary key\"*, será convertido a *" | ||||||||||||||
"\"integer\"*, o para \"*number(10)*\" será convertido a \"*number*\". " | ||||||||||||||
"Entonces para esa columna, revisará el diccionario de conversiones y usará " | ||||||||||||||
"la función de conversión registrada para ese tipo." | ||||||||||||||
"declarado, i. e. para *\"integer primary key\"*, será convertido a *\"integer" | ||||||||||||||
"\"*, o para \"*number(10)*\" será convertido a \"*number*\". Entonces para " | ||||||||||||||
"esa columna, revisará el diccionario de conversiones y usará la función de " | ||||||||||||||
"conversión registrada para ese tipo." | ||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:163 | ||||||||||||||
msgid "" | ||||||||||||||
|
@@ -249,7 +249,7 @@ msgstr "" | |||||||||||||
"es el tipo de la columna. Tratará de encontrar una entrada 'mytype' en el " | ||||||||||||||
"diccionario de conversiones y luego usar la función de conversión encontrada " | ||||||||||||||
"allí y devolver el valor. El nombre de la columna encontrada en :attr:" | ||||||||||||||
"`Cursor.description` no incluye el tipo, es decir, si se usa algo como ``'as " | ||||||||||||||
"`Cursor.description` no incluye el tipo, i. e. si se usa algo como ``'as " | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"''Expiration date [datetime]\"'`` en el SQL, entonces analizará todo lo " | ||||||||||||||
"demás hasta el primer ``'['`` para el nombre de la columna y *strip* el " | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"espacio anterior: el nombre de la columna sería: \"Expiration date\"." | ||||||||||||||
|
@@ -317,6 +317,9 @@ msgid "" | |||||||||||||
"to any combination of :const:`PARSE_DECLTYPES` and :const:`PARSE_COLNAMES` " | ||||||||||||||
"to turn type detection on." | ||||||||||||||
msgstr "" | ||||||||||||||
"*detect_types* por defecto 0 (i. e. off, no detección de tipo), se puede " | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"configurar a cualquier combinación de :const:`PARSE_DECLTYPES` y :const:" | ||||||||||||||
"`PARSE_COLNAMES` para encender la detección." | ||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:202 | ||||||||||||||
msgid "" | ||||||||||||||
|
@@ -326,18 +329,29 @@ msgid "" | |||||||||||||
"threads with the same connection writing operations should be serialized by " | ||||||||||||||
"the user to avoid data corruption." | ||||||||||||||
msgstr "" | ||||||||||||||
"Por defecto, *check_same_thread* es :const:`True` y únicamente el hilo " | ||||||||||||||
"creado puede utilizar la conexión. Si se configura :const:`False`, la " | ||||||||||||||
"conexión regresada podrá ser compartida con múltiples hilos. Cuando se " | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"utiliza multiples hilos con la misma conexión, las operaciones de escritura " | ||||||||||||||
"deberán ser serializadas por el usuario para evitar corrupción de datos." | ||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:207 | ||||||||||||||
#, fuzzy | ||||||||||||||
msgid "" | ||||||||||||||
"By default, the :mod:`sqlite3` module uses its :class:`Connection` class for " | ||||||||||||||
"the connect call. You can, however, subclass the :class:`Connection` class " | ||||||||||||||
"and make :func:`connect` use your class instead by providing your class for " | ||||||||||||||
"the *factory* parameter." | ||||||||||||||
msgstr "" | ||||||||||||||
"Por defecto el módulo :mod:`sqlite3` utiliza su clase :class:`Connection` " | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"para la llamada de conexión. Sin embargo se puede subclass la class :class:" | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"`Connection` y hacer :func:`connect` usando su clase en lugar de proveer su " | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"clase para el parámetro *factory*." | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:212 | ||||||||||||||
msgid "Consult the section :ref:`sqlite3-types` of this manual for details." | ||||||||||||||
msgstr "" | ||||||||||||||
"Consulte la sección :ref:`sqlite3-types` de este manual para más detalles." | ||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:214 | ||||||||||||||
msgid "" | ||||||||||||||
|
@@ -346,35 +360,51 @@ msgid "" | |||||||||||||
"that are cached for the connection, you can set the *cached_statements* " | ||||||||||||||
"parameter. The currently implemented default is to cache 100 statements." | ||||||||||||||
msgstr "" | ||||||||||||||
"El módulo :mod:`sqlite3` internamente usa declaración caché para evitar un " | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"análisis SQL costoso. Si se desea especificar el número de sentencias que " | ||||||||||||||
"estarán en memoria caché para la conexión, se puede configurar el parámetro " | ||||||||||||||
"*cached_statements*. Por defecto están configurado para 100 sentencias en " | ||||||||||||||
"memoria caché." | ||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:219 | ||||||||||||||
#, fuzzy | ||||||||||||||
msgid "" | ||||||||||||||
"If *uri* is true, *database* is interpreted as a URI. This allows you to " | ||||||||||||||
"specify options. For example, to open a database in read-only mode you can " | ||||||||||||||
"use::" | ||||||||||||||
msgstr "" | ||||||||||||||
"Si *uri* es True, la *database* se interpreta como una *URI*. Esto permite " | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
No hace referencia a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No lo sé, podría interpretarse mal, que tal que en lugar de hacer el llamado así:
se entienda que debe ser así:
? @cmaureir que opinas? |
||||||||||||||
"la especificación de opciones, por ejemplo, para abrir la base de datos en " | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"modo solo lectura::" | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:225 | ||||||||||||||
msgid "" | ||||||||||||||
"More information about this feature, including a list of recognized options, " | ||||||||||||||
"can be found in the `SQLite URI documentation <https://www.sqlite.org/uri." | ||||||||||||||
"html>`_." | ||||||||||||||
msgstr "" | ||||||||||||||
"Más información sobre esta característica, incluida una lista de opciones " | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"organizadas, se encuentran en `SQLite URI documentation <https://www.sqlite." | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"org/uri.html>`_." | ||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:229 | ||||||||||||||
msgid "" | ||||||||||||||
"Raises an :ref:`auditing event <auditing>` ``sqlite3.connect`` with argument " | ||||||||||||||
"``database``." | ||||||||||||||
msgstr "" | ||||||||||||||
"Lanza un :ref:`auditing event <auditing>` ``sqlite3.connect`` con argumento " | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
"``database``." | ||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:230 | ||||||||||||||
msgid "Added the *uri* parameter." | ||||||||||||||
msgstr "" | ||||||||||||||
msgstr "Agrega el parámetro *uri*" | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:233 | ||||||||||||||
msgid "" | ||||||||||||||
"*database* can now also be a :term:`path-like object`, not only a string." | ||||||||||||||
msgstr "" | ||||||||||||||
"*database* ahora también puede ser un :term:`path-like object`, no solo un " | ||||||||||||||
"*string*." | ||||||||||||||
G0erman marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
|
||||||||||||||
#: ../Doc/library/sqlite3.rst:239 | ||||||||||||||
msgid "" | ||||||||||||||
Comment on lines
407
to
408
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
|
Uh oh!
There was an error while loading. Please reload this page.