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

Skip to content

Commit a10a2e8

Browse files
committed
Merged revisions 78176 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r78176 | ezio.melotti | 2010-02-14 04:50:23 +0200 (Sun, 14 Feb 2010) | 1 line #7921: fix links. Patch by Brian Curtin. ........
1 parent bb13fbf commit a10a2e8

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

Doc/library/sqlite3.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -256,22 +256,23 @@ Connection Objects
256256
.. method:: Connection.execute(sql, [parameters])
257257

258258
This is a nonstandard shortcut that creates an intermediate cursor object by
259-
calling the cursor method, then calls the cursor's :meth:`execute` method with
260-
the parameters given.
259+
calling the cursor method, then calls the cursor's
260+
:meth:`execute<Cursor.execute>` method with the parameters given.
261261

262262

263263
.. method:: Connection.executemany(sql, [parameters])
264264

265265
This is a nonstandard shortcut that creates an intermediate cursor object by
266-
calling the cursor method, then calls the cursor's :meth:`executemany` method
267-
with the parameters given.
266+
calling the cursor method, then calls the cursor's
267+
:meth:`executemany<Cursor.executemany>` method with the parameters given.
268268

269269

270270
.. method:: Connection.executescript(sql_script)
271271

272272
This is a nonstandard shortcut that creates an intermediate cursor object by
273-
calling the cursor method, then calls the cursor's :meth:`executescript` method
274-
with the parameters given.
273+
calling the cursor method, then calls the cursor's
274+
:meth:`executescript<Cursor.executescript>` method with the parameters
275+
given.
275276

276277

277278
.. method:: Connection.create_function(name, num_params, func)

0 commit comments

Comments
 (0)