[DB-SIG] SQLObject 1.5.2

2014-04-13 Thread Oleg Broytman
Hello! I'm pleased to announce version 1.5.2, the second bugfix release of branch 1.5 of SQLObject. What's new in SQLObject === * Adapt duplicate error message strings for SQLite 3.8. Contributor for this release is Neil Muller. For a more complete list, please see the new

Re: [DB-SIG] Prepared statements in python drivers

2014-04-13 Thread INADA Naoki
>> I think prepared statement should be bound to connection. >> >> Connection.prapare(name, stmt, skip_on_dup=False) >> Prepare stmt as name. >> If skip_on_dup is true and same name is prepared before, do nothing. >> >> Cursor.execute_prepared(name, params, stmt=None) >> Execute prepared statement