Re: [Sqlalchemy-users] Firebird Patch supports type_conv and concurrency_level

2006-06-06 Thread Maciej Szumocki
Date: Sun, 04 Jun 2006 15:45:18 -0400 From: Brad Clements [EMAIL PROTECTED] Subject: [Sqlalchemy-users] Firebird Patch supports type_conv and concurrency_level To: sqlalchemy-users@lists.sourceforge.net Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=iso-8859-1

Re: [Sqlalchemy-users] Firebird Patch supports type_conv and concurrency_level

2006-06-06 Thread Brad Clements
On 6 Jun 2006 at 16:48, Maciej Szumocki wrote: dburi = firebird://sysdba:[EMAIL PROTECTED]:someport/path/database.gdb?type _conv=200concurrency_level=1 What about passing dictionary of type conversions as type_conv to kinterbasdb.init? FBDialect checks the data type of type_conv. If

[Sqlalchemy-users] Firebird Patch supports type_conv and concurrency_level

2006-06-05 Thread Brad Clements
This patch adds support for kinterbasdb.init() args specified in the dburi type_conv (defaults to 200) concurrency_level (defaults to 1) usage would be like dburi = firebird://sysdba:[EMAIL PROTECTED]:someport/path/database.gdb?type_conv=200concurrency_level=1 Index: