Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cecab43

Browse files
committed
96%: Accediendo a las columnas por nombre enlugar de índice
1 parent 48cb6a1 commit cecab43

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

library/sqlite3.po

Lines changed: 14 additions & 8 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-16 20:07-0500\n"
14+
"PO-Revision-Date: 2020-10-16 20:32-0500\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1702,28 +1702,34 @@ msgid ""
17021702
"iterate over it directly using only a single call on the :class:`Connection` "
17031703
"object."
17041704
msgstr ""
1705-
"Usando los métodos no estándar :meth:`execute`, :meth:`executemany` and :"
1706-
"meth:`executescript` del objeto :class:`Connection`, el código puede ser "
1707-
"escrito más consistentemente porqué no se tiene que crear explícitamente los "
1708-
"(a menudo superfluos) objetos :class:`Cursor`. De esta forma, se puede "
1709-
"ejecutar una sentencia ``SELECT`` e iterar directamente sobre él, solamente "
1710-
"usando una única llamada al objeto :class:`Connection`."
1705+
"Usando los métodos no estándar :meth:`execute`, :meth:`executemany` y :meth:"
1706+
"`executescript` del objeto :class:`Connection`, el código puede ser escrito "
1707+
"más consistentemente porqué no se tiene que crear explícitamente los (a "
1708+
"menudo superfluos) objetos :class:`Cursor`. En lugar, los objetos de la :"
1709+
"class:`Cursor` son creados implícitamente y estos métodos atajo retornan los "
1710+
"objetos *cursor*. De esta forma, se puede ejecutar una sentencia ``SELECT`` "
1711+
"e iterar directamente sobre él, solamente usando una única llamada al "
1712+
"objeto :class:`Connection`."
17111713

17121714
#: ../Doc/library/sqlite3.rst:1072
17131715
msgid "Accessing columns by name instead of by index"
1714-
msgstr ""
1716+
msgstr "Accediendo a las columnas por el nombre en lugar del índice"
17151717

17161718
#: ../Doc/library/sqlite3.rst:1074
17171719
msgid ""
17181720
"One useful feature of the :mod:`sqlite3` module is the built-in :class:"
17191721
"`sqlite3.Row` class designed to be used as a row factory."
17201722
msgstr ""
1723+
"Una característica útil del módulo :mod:`sqlite3` es la clase incluida :"
1724+
"class:`sqlite3.Row` diseñada para ser usada como una fabrica de filas."
17211725

17221726
#: ../Doc/library/sqlite3.rst:1077
17231727
msgid ""
17241728
"Rows wrapped with this class can be accessed both by index (like tuples) and "
17251729
"case-insensitively by name:"
17261730
msgstr ""
1731+
"Filas envueltas con esta clase pueden ser accedidas tanto por índice (al "
1732+
"igual que tuplas) como por nombre insensible a mayúsculas o minúsculas:"
17271733

17281734
#: ../Doc/library/sqlite3.rst:1084
17291735
msgid "Using the connection as a context manager"

0 commit comments

Comments
 (0)