Skip to content

Commit fe1680c

Browse files
committed
68%: Excepciones: Warning, Error, DatabaseError, IntegrityError, ProgrammingError, OperationalError, NotSupportedError
1 parent d368fbc commit fe1680c

File tree

1 file changed

+25
-6
lines changed

1 file changed

+25
-6
lines changed

library/sqlite3.po

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
14-
"PO-Revision-Date: 2020-10-06 12:22-0500\n"
14+
"PO-Revision-Date: 2020-10-06 19:36-0500\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1005,8 +1005,9 @@ msgid ""
10051005
"using an :term:`iterator` yielding parameters instead of a sequence."
10061006
msgstr ""
10071007
"Ejecuta un comando SQL contra todas las secuencias de parámetros o mapeos "
1008-
"encontrados en la secuencia *seq_of_parameters*. El módulo también permite "
1009-
"usar un :term:`iterator` produciendo parámetros en lugar de una secuencia."
1008+
"encontrados en la secuencia *seq_of_parameters*. El módulo :mod:`sqlite3` "
1009+
"también permite usar un :term:`iterator` produciendo parámetros en lugar de "
1010+
"una secuencia."
10101011

10111012
#: ../Doc/library/sqlite3.rst:636
10121013
msgid "Here's a shorter example using a :term:`generator`:"
@@ -1147,7 +1148,7 @@ msgstr ""
11471148
"modificada. Solo se configura si se emite una sentencia ``INSERT`` o "
11481149
"``REPLACE`` usando el método :meth:`execute`. Para otras operaciones "
11491150
"diferentes a ``INSERT`` o ``REPLACE`` o cuando :meth:`executemany` es "
1150-
"llamado, attr:`lastrowid` es configurado a :const:`None`."
1151+
"llamado, :attr:`lastrowid` es configurado a :const:`None`."
11511152

11521153
#: ../Doc/library/sqlite3.rst:715
11531154
msgid ""
@@ -1252,34 +1253,43 @@ msgstr "Ahora conectamos :class:`Row` en::"
12521253

12531254
#: ../Doc/library/sqlite3.rst:815
12541255
msgid "Exceptions"
1255-
msgstr ""
1256+
msgstr "Excepciones"
12561257

12571258
#: ../Doc/library/sqlite3.rst:819
12581259
msgid "A subclass of :exc:`Exception`."
1259-
msgstr ""
1260+
msgstr "Una subclase de :exe:`Exception`."
12601261

12611262
#: ../Doc/library/sqlite3.rst:823
12621263
msgid ""
12631264
"The base class of the other exceptions in this module. It is a subclass of :"
12641265
"exc:`Exception`."
12651266
msgstr ""
1267+
"La clase base de otras excepciones en este módulo. Es una subclase de :exc:"
1268+
"`Exception`."
12661269

12671270
#: ../Doc/library/sqlite3.rst:828
12681271
msgid "Exception raised for errors that are related to the database."
12691272
msgstr ""
1273+
"Excepción lanzada para errores que están relacionados con la base de datos."
12701274

12711275
#: ../Doc/library/sqlite3.rst:832
12721276
msgid ""
12731277
"Exception raised when the relational integrity of the database is affected, "
12741278
"e.g. a foreign key check fails. It is a subclass of :exc:`DatabaseError`."
12751279
msgstr ""
1280+
"Excepción lanzada cuando la integridad de la base de datos es afectada, e.g. "
1281+
"la comprobación de una llave foránea falla. Es una subclase de :exc:"
1282+
"`DatabaseError`."
12761283

12771284
#: ../Doc/library/sqlite3.rst:837
12781285
msgid ""
12791286
"Exception raised for programming errors, e.g. table not found or already "
12801287
"exists, syntax error in the SQL statement, wrong number of parameters "
12811288
"specified, etc. It is a subclass of :exc:`DatabaseError`."
12821289
msgstr ""
1290+
"Excepción lanzada por errores de programación, e.g. tabla no encontrada o ya "
1291+
"existente, error de sintaxis en la sentencia SQL, número equivocado de "
1292+
"parámetros especificados, etc. Es una subclase de :exc:`DatabaseError`."
12831293

12841294
#: ../Doc/library/sqlite3.rst:843
12851295
msgid ""
@@ -1288,6 +1298,11 @@ msgid ""
12881298
"disconnect occurs, the data source name is not found, a transaction could "
12891299
"not be processed, etc. It is a subclass of :exc:`DatabaseError`."
12901300
msgstr ""
1301+
"Excepción lanzada por errores relacionados por la operación de la base de "
1302+
"datos y no necesariamente bajo el control del programador, e.g. ocurre una "
1303+
"desconexión inesperada, el nombre de la fuente de datos no es encontrado, "
1304+
"una transacción no pudo ser procesada, etc. Es una subclase de :exc:"
1305+
"``DatabaseError`."
12911306

12921307
#: ../Doc/library/sqlite3.rst:850
12931308
msgid ""
@@ -1296,6 +1311,10 @@ msgid ""
12961311
"method on a connection that does not support transaction or has transactions "
12971312
"turned off. It is a subclass of :exc:`DatabaseError`."
12981313
msgstr ""
1314+
"Excepción lanzada en caso de que un método o API de base de datos fuera "
1315+
"usada en una base de datos que no la soporta, e.g. llamando el método :meth:"
1316+
"`~Connection.rollback` en una conexión que no soporta la transacción o tiene "
1317+
"deshabilitada las transacciones. Es una subclase de :exc:`DatabaseError`."
12991318

13001319
#: ../Doc/library/sqlite3.rst:859
13011320
msgid "SQLite and Python types"

0 commit comments

Comments
 (0)