@@ -23,15 +23,15 @@ msgstr ""
23
23
"Language : id\n "
24
24
"Plural-Forms : nplurals=1; plural=0;\n "
25
25
26
- #: ../.. /library/sqlite3.rst:2
26
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:2
27
27
msgid ":mod:`sqlite3` --- DB-API 2.0 interface for SQLite databases"
28
28
msgstr ""
29
29
30
- #: ../.. /library/sqlite3.rst:9
30
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:9
31
31
msgid "**Source code:** :source:`Lib/sqlite3/`"
32
32
msgstr ""
33
33
34
- #: ../.. /library/sqlite3.rst:13
34
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:13
35
35
msgid ""
36
36
"SQLite is a C library that provides a lightweight disk-based database that "
37
37
"doesn't require a separate server process and allows accessing the database "
@@ -41,39 +41,39 @@ msgid ""
41
41
" PostgreSQL or Oracle."
42
42
msgstr ""
43
43
44
- #: ../.. /library/sqlite3.rst:20
44
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:20
45
45
msgid ""
46
46
"The sqlite3 module was written by Gerhard Häring. It provides a SQL "
47
47
"interface compliant with the DB-API 2.0 specification described by "
48
48
":pep:`249`."
49
49
msgstr ""
50
50
51
- #: ../.. /library/sqlite3.rst:23
51
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:23
52
52
msgid ""
53
53
"To use the module, you must first create a :class:`Connection` object that "
54
54
"represents the database. Here the data will be stored in the "
55
55
":file:`example.db` file::"
56
56
msgstr ""
57
57
58
- #: ../.. /library/sqlite3.rst:30
58
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:30
59
59
msgid ""
60
60
"You can also supply the special name ``:memory:`` to create a database in "
61
61
"RAM."
62
62
msgstr ""
63
63
64
- #: ../.. /library/sqlite3.rst:32
64
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:32
65
65
msgid ""
66
66
"Once you have a :class:`Connection`, you can create a :class:`Cursor` "
67
67
"object and call its :meth:`~Cursor.execute` method to perform SQL commands::"
68
68
msgstr ""
69
69
70
- #: ../.. /library/sqlite3.rst:51
70
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:51
71
71
msgid ""
72
72
"The data you've saved is persistent and is available in subsequent "
73
73
"sessions::"
74
74
msgstr ""
75
75
76
- #: ../.. /library/sqlite3.rst:57
76
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:57
77
77
msgid ""
78
78
"Usually your SQL operations will need to use values from Python variables. "
79
79
"You shouldn't assemble your query using Python's string operations because "
@@ -82,7 +82,7 @@ msgid ""
82
82
"wrong)."
83
83
msgstr ""
84
84
85
- #: ../.. /library/sqlite3.rst:62
85
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:62
86
86
msgid ""
87
87
"Instead, use the DB-API's parameter substitution. Put ``?`` as a "
88
88
"placeholder wherever you want to use a value, and then provide a tuple of "
@@ -91,86 +91,87 @@ msgid ""
91
91
"``%s`` or ``:1``.) For example::"
92
92
msgstr ""
93
93
94
- #: ../.. /library/sqlite3.rst:84
94
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:84
95
95
msgid ""
96
96
"To retrieve data after executing a SELECT statement, you can either treat "
97
97
"the cursor as an :term:`iterator`, call the cursor's "
98
98
":meth:`~Cursor.fetchone` method to retrieve a single matching row, or call "
99
99
":meth:`~Cursor.fetchall` to get a list of the matching rows."
100
100
msgstr ""
101
101
102
- #: ../.. /library/sqlite3.rst:89
102
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:89
103
103
msgid "This example uses the iterator form::"
104
104
msgstr ""
105
105
106
- #: ../.. /library/sqlite3.rst:104
106
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:104
107
107
msgid "https://github.com/ghaering/pysqlite"
108
108
msgstr ""
109
109
110
- #: ../.. /library/sqlite3.rst:103
110
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:103
111
111
msgid ""
112
112
"The pysqlite web page -- sqlite3 is developed externally under the name "
113
113
"\" pysqlite\" ."
114
114
msgstr ""
115
115
116
- #: ../.. /library/sqlite3.rst:108
116
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:108
117
117
msgid "https://www.sqlite.org"
118
118
msgstr ""
119
119
120
- #: ../.. /library/sqlite3.rst:107
120
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:107
121
121
msgid ""
122
122
"The SQLite web page; the documentation describes the syntax and the "
123
123
"available data types for the supported SQL dialect."
124
124
msgstr ""
125
125
126
- #: ../.. /library/sqlite3.rst:111
126
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:111
127
127
msgid "https://www.w3schools.com/sql/"
128
128
msgstr ""
129
129
130
- #: ../.. /library/sqlite3.rst:111
130
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:111
131
131
msgid "Tutorial, reference and examples for learning SQL syntax."
132
132
msgstr ""
133
133
134
- #: ../.. /library/sqlite3.rst:113
134
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:113
135
135
msgid ":pep:`249` - Database API Specification 2.0"
136
136
msgstr ""
137
137
138
- #: ../.. /library/sqlite3.rst:114
138
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:114
139
139
msgid "PEP written by Marc-André Lemburg."
140
140
msgstr ""
141
141
142
- #: ../.. /library/sqlite3.rst:120
142
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:120
143
143
msgid "Module functions and constants"
144
144
msgstr ""
145
145
146
- #: ../.. /library/sqlite3.rst:125
146
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:125
147
147
msgid ""
148
148
"The version number of this module, as a string. This is not the version of "
149
149
"the SQLite library."
150
150
msgstr ""
151
151
152
- #: ../.. /library/sqlite3.rst:131
152
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:131
153
153
msgid ""
154
154
"The version number of this module, as a tuple of integers. This is not the "
155
155
"version of the SQLite library."
156
156
msgstr ""
157
157
158
- #: ../.. /library/sqlite3.rst:137
158
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:137
159
159
msgid "The version number of the run-time SQLite library, as a string."
160
160
msgstr ""
161
161
162
- #: ../.. /library/sqlite3.rst:142
162
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:142
163
163
msgid ""
164
164
"The version number of the run-time SQLite library, as a tuple of integers."
165
165
msgstr ""
166
166
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
168
169
msgid ""
169
170
"This constant is meant to be used with the *detect_types* parameter of the "
170
171
":func:`connect` function."
171
172
msgstr ""
172
173
173
- #: ../.. /library/sqlite3.rst:150
174
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:150
174
175
msgid ""
175
176
"Setting it makes the :mod:`sqlite3` module parse the declared type for each "
176
177
"column it returns. It will parse out the first word of the declared type, "
@@ -180,7 +181,7 @@ msgid ""
180
181
"registered for that type there."
181
182
msgstr ""
182
183
183
- #: ../.. /library/sqlite3.rst:163
184
+ #: /home/travis/build/python/cpython-doc-catalog/Doc /library/sqlite3.rst:163
184
185
msgid ""
185
186
"Setting this makes the SQLite interface parse the column name for each "
186
187
"column it returns. It will look for a string formed [mytype] in there, and "
0 commit comments