Re: [SQLObject] SQLObject 0.14.0 - per-instance connection problem

2010-10-12 Thread Oleg Broytman
On Tue, Oct 12, 2010 at 05:17:53PM +0200, Georges Schutz wrote: > --> So for me the patch is OK. Thank you for the report! > >> conn = sobj.connectionForURI('sqlite:/:memory:') > >> > >> Person.createTable(ifNotExists=True, connection=conn) > >

Re: [SQLObject] SQLObject 0.14.0 - per-instance connection problem

2010-10-12 Thread Georges Schutz
On 12/10/2010 15:39, Oleg Broytman wrote: > On Mon, Oct 11, 2010 at 06:17:02PM +0200, Georges Schutz wrote: >> import sqlobject as sobj >> >> class Person(sobj.SQLObject): >> name = sobj.StringCol(default=None) >> >> conn = sobj.connectionForURI('sqlite:/:memory:') >> >> Person.createTable(if

Re: [SQLObject] SQLObject 0.14.0 - per-instance connection problem

2010-10-12 Thread Oleg Broytman
On Mon, Oct 11, 2010 at 06:17:02PM +0200, Georges Schutz wrote: > import sqlobject as sobj > > class Person(sobj.SQLObject): > name = sobj.StringCol(default=None) > > conn = sobj.connectionForURI('sqlite:/:memory:') > > Person.createTable(ifNotExists=True, connection=conn) > Person(name="P.