summaryrefslogtreecommitdiffstats
path: root/Doc/library/sqlite3.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-02-14 02:55:47 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-02-14 02:55:47 (GMT)
commitc3ad71e621826202940d3998d584d4dbaf660930 (patch)
tree453878679d4c6486c0ee45108b31951ad8cd32d0 /Doc/library/sqlite3.rst
parent6243c6ab10533e5f8d22b5991e254a45180b8920 (diff)
downloadcpython-c3ad71e621826202940d3998d584d4dbaf660930.zip
cpython-c3ad71e621826202940d3998d584d4dbaf660930.tar.gz
cpython-c3ad71e621826202940d3998d584d4dbaf660930.tar.bz2
Merged revisions 78178 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r78178 | ezio.melotti | 2010-02-14 04:54:22 +0200 (Sun, 14 Feb 2010) | 9 lines Merged revisions 78176 via svnmerge from svn+ssh://pythondev@svn.python.org/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. ........ ................
Diffstat (limited to 'Doc/library/sqlite3.rst')
-rw-r--r--Doc/library/sqlite3.rst13
1 files changed, 7 insertions, 6 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 696f19c..668fc64 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -256,22 +256,23 @@ Connection Objects
.. method:: Connection.execute(sql, [parameters])
This is a nonstandard shortcut that creates an intermediate cursor object by
- calling the cursor method, then calls the cursor's :meth:`execute` method with
- the parameters given.
+ calling the cursor method, then calls the cursor's
+ :meth:`execute<Cursor.execute>` method with the parameters given.
.. method:: Connection.executemany(sql, [parameters])
This is a nonstandard shortcut that creates an intermediate cursor object by
- calling the cursor method, then calls the cursor's :meth:`executemany` method
- with the parameters given.
+ calling the cursor method, then calls the cursor's
+ :meth:`executemany<Cursor.executemany>` method with the parameters given.
.. method:: Connection.executescript(sql_script)
This is a nonstandard shortcut that creates an intermediate cursor object by
- calling the cursor method, then calls the cursor's :meth:`executescript` method
- with the parameters given.
+ calling the cursor method, then calls the cursor's
+ :meth:`executescript<Cursor.executescript>` method with the parameters
+ given.
.. method:: Connection.create_function(name, num_params, func)