summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-08-06 01:06:22 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-08-06 01:06:22 +0000
commitd4102a21f491f27c0df92458f03c87beaab1b030 (patch)
treeedfdda75b95ba043830e0a111eda7075a6e058a7 /doc
parent039dbd1bce60da690b89e0491270eccbecd9fb7a (diff)
downloadsqlalchemy-d4102a21f491f27c0df92458f03c87beaab1b030.tar.gz
edit
Diffstat (limited to 'doc')
-rw-r--r--doc/build/content/sqlexpression.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/content/sqlexpression.txt b/doc/build/content/sqlexpression.txt
index 98f872d1a..dd8f8db1b 100644
--- a/doc/build/content/sqlexpression.txt
+++ b/doc/build/content/sqlexpression.txt
@@ -108,8 +108,8 @@ The interesting part of an `Insert` is executing it. In this tutorial, we will
The `Connection` object represents an actively checked out DBAPI connection resource. Lets feed it our `Insert` object and see what happens:
{python}
- {opensql}>>> result = conn.execute(ins)
- INSERT INTO users (name, fullname) VALUES (?, ?)
+ >>> result = conn.execute(ins)
+ {opensql}INSERT INTO users (name, fullname) VALUES (?, ?)
['jack', 'Jack Jones']
COMMIT