@@ -23,15 +23,15 @@ msgstr ""
2323"Language :id\n "
2424"Plural-Forms :nplurals=1; plural=0;\n "
2525
26- #: ../.. /library/sqlite3.rst:2
26+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:2
2727msgid ":mod:`sqlite3` --- DB-API 2.0 interface for SQLite databases"
2828msgstr ""
2929
30- #: ../.. /library/sqlite3.rst:9
30+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:9
3131msgid "**Source code:** :source:`Lib/sqlite3/`"
3232msgstr ""
3333
34- #: ../.. /library/sqlite3.rst:13
34+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:13
3535msgid ""
3636"SQLite is a C library that provides a lightweight disk-based database that "
3737"doesn't require a separate server process and allows accessing the database "
@@ -41,39 +41,39 @@ msgid ""
4141" PostgreSQL or Oracle."
4242msgstr ""
4343
44- #: ../.. /library/sqlite3.rst:20
44+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:20
4545msgid ""
4646"The sqlite3 module was written by Gerhard Häring. It provides a SQL "
4747"interface compliant with the DB-API 2.0 specification described by "
4848":pep:`249`."
4949msgstr ""
5050
51- #: ../.. /library/sqlite3.rst:23
51+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:23
5252msgid ""
5353"To use the module, you must first create a :class:`Connection` object that "
5454"represents the database. Here the data will be stored in the "
5555":file:`example.db` file::"
5656msgstr ""
5757
58- #: ../.. /library/sqlite3.rst:30
58+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:30
5959msgid ""
6060"You can also supply the special name ``:memory:`` to create a database in "
6161"RAM."
6262msgstr ""
6363
64- #: ../.. /library/sqlite3.rst:32
64+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:32
6565msgid ""
6666"Once you have a :class:`Connection`, you can create a :class:`Cursor` "
6767"object and call its :meth:`~Cursor.execute` method to perform SQL commands::"
6868msgstr ""
6969
70- #: ../.. /library/sqlite3.rst:51
70+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:51
7171msgid ""
7272"The data you've saved is persistent and is available in subsequent "
7373"sessions::"
7474msgstr ""
7575
76- #: ../.. /library/sqlite3.rst:57
76+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:57
7777msgid ""
7878"Usually your SQL operations will need to use values from Python variables. "
7979"You shouldn't assemble your query using Python's string operations because "
@@ -82,7 +82,7 @@ msgid ""
8282"wrong)."
8383msgstr ""
8484
85- #: ../.. /library/sqlite3.rst:62
85+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:62
8686msgid ""
8787"Instead, use the DB-API's parameter substitution. Put ``?`` as a "
8888"placeholder wherever you want to use a value, and then provide a tuple of "
@@ -91,86 +91,87 @@ msgid ""
9191"``%s`` or ``:1``.) For example::"
9292msgstr ""
9393
94- #: ../.. /library/sqlite3.rst:84
94+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:84
9595msgid ""
9696"To retrieve data after executing a SELECT statement, you can either treat "
9797"the cursor as an :term:`iterator`, call the cursor's "
9898":meth:`~Cursor.fetchone` method to retrieve a single matching row, or call "
9999":meth:`~Cursor.fetchall` to get a list of the matching rows."
100100msgstr ""
101101
102- #: ../.. /library/sqlite3.rst:89
102+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:89
103103msgid "This example uses the iterator form::"
104104msgstr ""
105105
106- #: ../.. /library/sqlite3.rst:104
106+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:104
107107msgid "https://github.com/ghaering/pysqlite"
108108msgstr ""
109109
110- #: ../.. /library/sqlite3.rst:103
110+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:103
111111msgid ""
112112"The pysqlite web page -- sqlite3 is developed externally under the name "
113113"\" pysqlite\" ."
114114msgstr ""
115115
116- #: ../.. /library/sqlite3.rst:108
116+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:108
117117msgid "https://www.sqlite.org"
118118msgstr ""
119119
120- #: ../.. /library/sqlite3.rst:107
120+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:107
121121msgid ""
122122"The SQLite web page; the documentation describes the syntax and the "
123123"available data types for the supported SQL dialect."
124124msgstr ""
125125
126- #: ../.. /library/sqlite3.rst:111
126+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:111
127127msgid "https://www.w3schools.com/sql/"
128128msgstr ""
129129
130- #: ../.. /library/sqlite3.rst:111
130+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:111
131131msgid "Tutorial, reference and examples for learning SQL syntax."
132132msgstr ""
133133
134- #: ../.. /library/sqlite3.rst:113
134+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:113
135135msgid ":pep:`249` - Database API Specification 2.0"
136136msgstr ""
137137
138- #: ../.. /library/sqlite3.rst:114
138+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:114
139139msgid "PEP written by Marc-André Lemburg."
140140msgstr ""
141141
142- #: ../.. /library/sqlite3.rst:120
142+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:120
143143msgid "Module functions and constants"
144144msgstr ""
145145
146- #: ../.. /library/sqlite3.rst:125
146+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:125
147147msgid ""
148148"The version number of this module, as a string. This is not the version of "
149149"the SQLite library."
150150msgstr ""
151151
152- #: ../.. /library/sqlite3.rst:131
152+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:131
153153msgid ""
154154"The version number of this module, as a tuple of integers. This is not the "
155155"version of the SQLite library."
156156msgstr ""
157157
158- #: ../.. /library/sqlite3.rst:137
158+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:137
159159msgid "The version number of the run-time SQLite library, as a string."
160160msgstr ""
161161
162- #: ../.. /library/sqlite3.rst:142
162+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:142
163163msgid ""
164164"The version number of the run-time SQLite library, as a tuple of integers."
165165msgstr ""
166166
167- #: ../../library/sqlite3.rst:147 ../../library/sqlite3.rst:160
167+ #: /home/travis/build/python/cpython-doc-catalog/Doc/library/sqlite3.rst:147
168+ #: /home/travis/build/python/cpython-doc-catalog/Doc/library/sqlite3.rst:160
168169msgid ""
169170"This constant is meant to be used with the *detect_types* parameter of the "
170171":func:`connect` function."
171172msgstr ""
172173
173- #: ../.. /library/sqlite3.rst:150
174+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:150
174175msgid ""
175176"Setting it makes the :mod:`sqlite3` module parse the declared type for each "
176177"column it returns. It will parse out the first word of the declared type, "
@@ -180,7 +181,7 @@ msgid ""
180181"registered for that type there."
181182msgstr ""
182183
183- #: ../.. /library/sqlite3.rst:163
184+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:163
184185msgid ""
185186"Setting this makes the SQLite interface parse the column name for each "
186187"column it returns. It will look for a string formed [mytype] in there, and "