Kaydet (Commit) a68f7b8a authored tarafından Ezio Melotti's avatar Ezio Melotti

#7921: fix links. Patch by Brian Curtin.

üst 876473bc
...@@ -258,21 +258,22 @@ Connection Objects ...@@ -258,21 +258,22 @@ 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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment