]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
edit
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 6 Aug 2007 01:06:22 +0000 (01:06 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 6 Aug 2007 01:06:22 +0000 (01:06 +0000)
doc/build/content/sqlexpression.txt

index 98f872d1a65fdf39d371361c2b04b99ab4650e79..dd8f8db1b30a7f5dcc64f1066d788c51c8123f96 100644 (file)
@@ -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