[sqlalchemy] Re: TypeError: an integer is required

2010-10-09 Thread M3nt0r3
I found the problem. in my sqlite test db i had a boolean field empty and the fetch failed with that error. TypeError: an integer is required i don understand why with SA installed from pypi ( both 0.6.3 and 0.6.4 ) it worked and with the 0.6.3 installed with deb no. sorry to all and thanks

Re: [sqlalchemy] Re: TypeError: an integer is required

2010-10-09 Thread Michael Bayer
On Oct 9, 2010, at 10:11 AM, M3nt0r3 wrote: I found the problem. in my sqlite test db i had a boolean field empty and the fetch failed with that error. TypeError: an integer is required i don understand why with SA installed from pypi ( both 0.6.3 and 0.6.4 ) it worked and with the

[sqlalchemy] Re: TypeError: an integer is required

2010-10-08 Thread M3nt0r3
this is in the maverick deb code: def create_row_processor(self, selectcontext, path, mapper, row, adapter): key, col = self.key, self.columns[0] if adapter: col = adapter.columns[col] if col is not None and col in row: def new_execute(state,

Re: [sqlalchemy] Re: TypeError: an integer is required

2010-10-08 Thread Michael Bayer
On Oct 8, 2010, at 4:39 PM, M3nt0r3 wrote: this is in the maverick deb code: def create_row_processor(self, selectcontext, path, mapper, row, adapter): key, col = self.key, self.columns[0] if adapter: col = adapter.columns[col] if col is not None