Skip to content

Commit 06a6565

Browse files
github-actions[bot]mattwang44
authored andcommitted
sync with cpython 255f7ded
1 parent 90bcf17 commit 06a6565

File tree

2 files changed

+87
-84
lines changed

2 files changed

+87
-84
lines changed

library/sqlite3.po

+36-36
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.10\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2022-08-06 00:16+0000\n"
10+
"POT-Creation-Date: 2022-08-07 00:19+0000\n"
1111
"PO-Revision-Date: 2018-05-23 16:10+0000\n"
1212
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -72,88 +72,88 @@ msgid ""
7272
msgstr ""
7373

7474
#: ../../library/sqlite3.rst:41
75+
msgid "https://www.sqlite.org"
76+
msgstr "https://www.sqlite.org"
77+
78+
#: ../../library/sqlite3.rst:40
79+
msgid ""
80+
"The SQLite web page; the documentation describes the syntax and the "
81+
"available data types for the supported SQL dialect."
82+
msgstr ""
83+
84+
#: ../../library/sqlite3.rst:44
85+
msgid "https://www.w3schools.com/sql/"
86+
msgstr "https://www.w3schools.com/sql/"
87+
88+
#: ../../library/sqlite3.rst:44
89+
msgid "Tutorial, reference and examples for learning SQL syntax."
90+
msgstr ""
91+
92+
#: ../../library/sqlite3.rst:46
93+
msgid ":pep:`249` - Database API Specification 2.0"
94+
msgstr ""
95+
96+
#: ../../library/sqlite3.rst:47
97+
msgid "PEP written by Marc-André Lemburg."
98+
msgstr "PEP 由 Marc-André Lemburg 撰寫。"
99+
100+
#: ../../library/sqlite3.rst:53
75101
msgid "Tutorial"
76102
msgstr ""
77103

78-
#: ../../library/sqlite3.rst:43
104+
#: ../../library/sqlite3.rst:55
79105
msgid ""
80106
"To use the module, start by creating a :class:`Connection` object that "
81107
"represents the database. Here the data will be stored in the :file:`example."
82108
"db` file::"
83109
msgstr ""
84110

85-
#: ../../library/sqlite3.rst:50
111+
#: ../../library/sqlite3.rst:62
86112
msgid ""
87113
"The special path name ``:memory:`` can be provided to create a temporary "
88114
"database in RAM."
89115
msgstr ""
90116

91-
#: ../../library/sqlite3.rst:53
117+
#: ../../library/sqlite3.rst:65
92118
msgid ""
93119
"Once a :class:`Connection` has been established, create a :class:`Cursor` "
94120
"object and call its :meth:`~Cursor.execute` method to perform SQL commands::"
95121
msgstr ""
96122

97-
#: ../../library/sqlite3.rst:72
123+
#: ../../library/sqlite3.rst:84
98124
msgid ""
99125
"The saved data is persistent: it can be reloaded in a subsequent session "
100126
"even after restarting the Python interpreter::"
101127
msgstr ""
102128

103-
#: ../../library/sqlite3.rst:79
129+
#: ../../library/sqlite3.rst:91
104130
msgid "At this point, our database only contains one row::"
105131
msgstr ""
106132

107-
#: ../../library/sqlite3.rst:85
133+
#: ../../library/sqlite3.rst:97
108134
msgid ""
109135
"The result is a one-item :class:`tuple`: one row, with one column. Now, let "
110136
"us insert three more rows of data, using :meth:`~Cursor.executemany`::"
111137
msgstr ""
112138

113-
#: ../../library/sqlite3.rst:97
139+
#: ../../library/sqlite3.rst:109
114140
msgid ""
115141
"Notice that we used ``?`` placeholders to bind *data* to the query. Always "
116142
"use placeholders instead of :ref:`string formatting <tut-formatting>` to "
117143
"bind Python values to SQL statements, to avoid `SQL injection attacks`_. See "
118144
"the :ref:`placeholders how-to <sqlite3-placeholders>` for more details."
119145
msgstr ""
120146

121-
#: ../../library/sqlite3.rst:103
147+
#: ../../library/sqlite3.rst:115
122148
msgid ""
123149
"Then, retrieve the data by iterating over the result of a ``SELECT`` "
124150
"statement::"
125151
msgstr ""
126152

127-
#: ../../library/sqlite3.rst:113
153+
#: ../../library/sqlite3.rst:125
128154
msgid "You've now created an SQLite database using the :mod:`!sqlite3` module."
129155
msgstr ""
130156

131-
#: ../../library/sqlite3.rst:121
132-
msgid "https://www.sqlite.org"
133-
msgstr "https://www.sqlite.org"
134-
135-
#: ../../library/sqlite3.rst:120
136-
msgid ""
137-
"The SQLite web page; the documentation describes the syntax and the "
138-
"available data types for the supported SQL dialect."
139-
msgstr ""
140-
141-
#: ../../library/sqlite3.rst:124
142-
msgid "https://www.w3schools.com/sql/"
143-
msgstr "https://www.w3schools.com/sql/"
144-
145-
#: ../../library/sqlite3.rst:124
146-
msgid "Tutorial, reference and examples for learning SQL syntax."
147-
msgstr ""
148-
149-
#: ../../library/sqlite3.rst:126
150-
msgid ":pep:`249` - Database API Specification 2.0"
151-
msgstr ""
152-
153-
#: ../../library/sqlite3.rst:127
154-
msgid "PEP written by Marc-André Lemburg."
155-
msgstr "PEP 由 Marc-André Lemburg 撰寫。"
156-
157157
#: ../../library/sqlite3.rst:133
158158
msgid "Reference"
159159
msgstr ""

0 commit comments

Comments
 (0)