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. ........ ................
This commit is contained in:
parent
6243c6ab10
commit
c3ad71e621
|
@ -256,22 +256,23 @@ Connection Objects
|
||||||
.. method:: Connection.execute(sql, [parameters])
|
.. method:: Connection.execute(sql, [parameters])
|
||||||
|
|
||||||
This is a nonstandard shortcut that creates an intermediate cursor object by
|
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
|
calling the cursor method, then calls the cursor's
|
||||||
the parameters given.
|
:meth:`execute<Cursor.execute>` method with the parameters given.
|
||||||
|
|
||||||
|
|
||||||
.. method:: Connection.executemany(sql, [parameters])
|
.. method:: Connection.executemany(sql, [parameters])
|
||||||
|
|
||||||
This is a nonstandard shortcut that creates an intermediate cursor object by
|
This is a nonstandard shortcut that creates an intermediate cursor object by
|
||||||
calling the cursor method, then calls the cursor's :meth:`executemany` method
|
calling the cursor method, then calls the cursor's
|
||||||
with the parameters given.
|
:meth:`executemany<Cursor.executemany>` method with the parameters given.
|
||||||
|
|
||||||
|
|
||||||
.. method:: Connection.executescript(sql_script)
|
.. method:: Connection.executescript(sql_script)
|
||||||
|
|
||||||
This is a nonstandard shortcut that creates an intermediate cursor object by
|
This is a nonstandard shortcut that creates an intermediate cursor object by
|
||||||
calling the cursor method, then calls the cursor's :meth:`executescript` method
|
calling the cursor method, then calls the cursor's
|
||||||
with the parameters given.
|
:meth:`executescript<Cursor.executescript>` method with the parameters
|
||||||
|
given.
|
||||||
|
|
||||||
|
|
||||||
.. method:: Connection.create_function(name, num_params, func)
|
.. method:: Connection.create_function(name, num_params, func)
|
||||||
|
|
Loading…
Reference in New Issue