<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlalchemy.git/test/engine/test_execute.py, branch rel_0_6</title>
<subtitle>github.com: zzzeek/sqlalchemy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/'/>
<entry>
<title>-whitespace removal bonanza</title>
<updated>2011-01-02T19:25:15+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2011-01-02T19:25:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=be08ac57ef06eee5dfa8fe9d273a8984ce24ca20'/>
<id>be08ac57ef06eee5dfa8fe9d273a8984ce24ca20</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- and fix everything from the last checkin that breaks on py 2.4, 2.5</title>
<updated>2010-11-09T16:46:52+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2010-11-09T16:46:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=e1a30715d233bc0aa2741502ab122cabf586b4c4'/>
<id>e1a30715d233bc0aa2741502ab122cabf586b4c4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Implemented sequence check capability for the C</title>
<updated>2010-11-09T16:40:23+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2010-11-09T16:40:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=a41c50ad63f688cce99fdb9920c4f7c24ef0c866'/>
<id>a41c50ad63f688cce99fdb9920c4f7c24ef0c866</id>
<content type='text'>
version of RowProxy, as well as 2.7 style
"collections.Sequence" registration for RowProxy.
[ticket:1871]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
version of RowProxy, as well as 2.7 style
"collections.Sequence" registration for RowProxy.
[ticket:1871]
</pre>
</div>
</content>
</entry>
<entry>
<title>- *Major* cleanup / modernization of the Informix</title>
<updated>2010-10-02T01:26:05+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2010-10-02T01:26:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=761b4f29e295cfaa774a9a2fec713f9055548387'/>
<id>761b4f29e295cfaa774a9a2fec713f9055548387</id>
<content type='text'>
dialect for 0.6, courtesy Florian Apolloner.
[ticket:1906]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
dialect for 0.6, courtesy Florian Apolloner.
[ticket:1906]
</pre>
</div>
</content>
</entry>
<entry>
<title>Python-tidy test/engine and test/aaa_profiling, 80% auto + 20% manual intervention</title>
<updated>2010-07-11T17:15:51+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2010-07-11T17:15:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=a6b62cc3fed5f06d3428b1f6ee13756175ded61b'/>
<id>a6b62cc3fed5f06d3428b1f6ee13756175ded61b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Pool classes will reuse the same "pool_logging_name" setting</title>
<updated>2010-05-31T00:24:08+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2010-05-31T00:24:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=9bab63b69341bf9d89a30de2f624644b55afc6e9'/>
<id>9bab63b69341bf9d89a30de2f624644b55afc6e9</id>
<content type='text'>
after a dispose() occurs.

- Engine gains an "execution_options" argument and
update_execution_options() method, which will apply to
all connections generated by this engine.

- Added more aggressive caching to the mapper's usage of
UPDATE, INSERT, and DELETE expressions.  Assuming the
statement has no per-object SQL expressions attached,
the expression objects are cached by the mapper after
the first create, and their compiled form is stored
persistently in a cache dictionary for the duration of
the related Engine.

- change #3 required change #1 so that we could test
a set of mappers operating over the course of many engines without
memory usage increase.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
after a dispose() occurs.

- Engine gains an "execution_options" argument and
update_execution_options() method, which will apply to
all connections generated by this engine.

- Added more aggressive caching to the mapper's usage of
UPDATE, INSERT, and DELETE expressions.  Assuming the
statement has no per-object SQL expressions attached,
the expression objects are cached by the mapper after
the first create, and their compiled form is stored
persistently in a cache dictionary for the duration of
the related Engine.

- change #3 required change #1 so that we could test
a set of mappers operating over the course of many engines without
memory usage increase.
</pre>
</div>
</content>
</entry>
<entry>
<title>further testing reveals that cursor.rowcount is only called with update/delete and DDL,</title>
<updated>2010-04-13T00:20:50+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2010-04-13T00:20:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=731ad9b0b956fb3b9d318576661ede51b3d4f596'/>
<id>731ad9b0b956fb3b9d318576661ede51b3d4f596</id>
<content type='text'>
and also that FB's cursor.rowcount is a little expensive, but not dramatically.
added a test to ensure cursor.rowcount is only called on update/delete.
the current default for firebird enable_rowcount is now True, leaving all the
options to turn it off etc..
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and also that FB's cursor.rowcount is a little expensive, but not dramatically.
added a test to ensure cursor.rowcount is only called on update/delete.
the current default for firebird enable_rowcount is now True, leaving all the
options to turn it off etc..
</pre>
</div>
</content>
</entry>
<entry>
<title>- added a test for the solution in [ticket:1757].</title>
<updated>2010-04-11T19:37:20+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2010-04-11T19:37:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=fc157ed8c57b7fcfea6b76688d4733c87c4f8e82'/>
<id>fc157ed8c57b7fcfea6b76688d4733c87c4f8e82</id>
<content type='text'>
- this does imply that a lot of the "test the RowProxy" tests in sql/test_query might be better off in engine/test_execute or perhaps engine/test_resultproxy
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- this does imply that a lot of the "test the RowProxy" tests in sql/test_query might be better off in engine/test_execute or perhaps engine/test_resultproxy
</pre>
</div>
</content>
</entry>
<entry>
<title>fix this test for oracle</title>
<updated>2010-04-08T00:25:37+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2010-04-08T00:25:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=f3fb6fe1d8088f0566b0bf7c2596b669c8979cbf'/>
<id>f3fb6fe1d8088f0566b0bf7c2596b669c8979cbf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- ah.  oursql didn't have "extra steps" here, the previous system within execution_options()</title>
<updated>2010-04-07T19:20:20+00:00</updated>
<author>
<name>Mike Bayer</name>
<email>mike_mp@zzzcomputing.com</email>
</author>
<published>2010-04-07T19:20:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlalchemy.git/commit/?id=8842bbd8b5e72796926b6e35f86d060c3b86b6a2'/>
<id>8842bbd8b5e72796926b6e35f86d060c3b86b6a2</id>
<content type='text'>
used by oursql would generate a proxied connection from within the dialect.initialize() phase.  the new
clone system bypasses that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
used by oursql would generate a proxied connection from within the dialect.initialize() phase.  the new
clone system bypasses that.
</pre>
</div>
</content>
</entry>
</feed>
