From: Mike Bayer Date: Mon, 6 Aug 2007 01:06:22 +0000 (+0000) Subject: edit X-Git-Tag: rel_0_4beta1~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4102a21f491f27c0df92458f03c87beaab1b030;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git edit --- diff --git a/doc/build/content/sqlexpression.txt b/doc/build/content/sqlexpression.txt index 98f872d1a6..dd8f8db1b3 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