@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.11\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2023-06-30 14:41 +0000\n "
15+ "POT-Creation-Date : 2023-07-14 14:44 +0000\n "
1616"PO-Revision-Date : 2023-05-24 02:19+0000\n "
1717"Last-Translator : Waldemar Stoczkowski, 2023\n "
1818"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -228,8 +228,9 @@ msgid "Parameters"
228228msgstr ""
229229
230230msgid ""
231- "The path to the database file to be opened. Pass ``\" :memory:\" `` to open a "
232- "connection to a database that is in RAM instead of on disk."
231+ "The path to the database file to be opened. You can pass ``\" :memory:\" `` to "
232+ "create an `SQLite database existing only in memory <https://sqlite.org/"
233+ "inmemorydb.html>`_, and open a connection to it."
233234msgstr ""
234235
235236msgid ""
@@ -1680,6 +1681,13 @@ msgstr ""
16801681msgid "Queries now return :class:`!Row` objects:"
16811682msgstr ""
16821683
1684+ msgid ""
1685+ "The ``FROM`` clause can be omitted in the ``SELECT`` statement, as in the "
1686+ "above example. In such cases, SQLite returns a single row with columns "
1687+ "defined by expressions, e.g. literals, with the given aliases ``expr AS "
1688+ "alias``."
1689+ msgstr ""
1690+
16831691msgid ""
16841692"You can create a custom :attr:`~Cursor.row_factory` that returns each row as "
16851693"a :class:`dict`, with column names mapped to values:"
0 commit comments