RE: [Zope] ZMysqlDA error, and a workaround

2000-10-09 Thread Jon Franz
Franz Sent: Monday, October 09, 2000 7:07 PM To: '[EMAIL PROTECTED]'; Jon Franz Cc: [EMAIL PROTECTED] Subject: RE: [Zope] ZMysqlDA error, and a workaround Wow, that looks very diffrent from my ZMySQLDA, what version are you running? I just got mine to work, I had to mod the def section in

RE: [Zope] ZMysqlDA error, and a workaround

2000-10-09 Thread Jon Franz
]; [EMAIL PROTECTED] Subject: Re: [Zope] ZMysqlDA error, and a workaround I'm guessing it's in db.py in ZMySQLDA, I had to do the same thing with DECMIAL as shown here, I didn't post that since I'm not sure most folks would want this behavior but you should be able to do the

Re: [Zope] ZMysqlDA error, and a workaround

2000-10-09 Thread Steve Spicklemire
I'm guessing it's in db.py in ZMySQLDA, I had to do the same thing with DECMIAL as shown here, I didn't post that since I'm not sure most folks would want this behavior but you should be able to do the same with MEDIUMINT: class DB: defs={ FIELD_TYPE.CHAR: "i", FIELD_TYPE.DATE:

[Zope] ZMysqlDA error, and a workaround

2000-10-09 Thread Jon Franz
This is additional info for the error mentioned in my last email. If I alter the column definitions to use 'int' as opposed to 'mediumint', then everything works fine! So, its the 'mediumint' type that isnt mapping properly... where would i fix this? _