MiddleKit version 1.0 released on 11/29/08
addToBars()
for adding
objects to the list, but also a method named delFromBars()
that will make it easy for you to remove an existing object from the list
(as suggested by Luke Holden in patch #670051).executeSQL()
now can commit
the SQL statement immediately if you pass in commit=True
.
This is helpful since the standard DB API execute()
method
does not commit automatically, and MySQLdb now follows the standard.executeSQLTransaction()
has been added that
executes and commits a sequence of SQL statements as a transaction.autocommit
that will reestablish the old behavior of MySQLdb
of auto commiting every statement if you set to True. But note that by
default there will now be no autocommit any more.