Re: [sqlalchemy] fractional second percision- mysql

2012-07-17 Thread James
I have created a feature request ticket for MySQLdb to add fractional second support: http://sourceforge.net/tracker/?func=detail&aid=3545195&group_id=22307&atid=374935 Currently, I am still using my patched version of MySQLdb/times.py however I did notice a slight formatting issue with my orig

Re: [sqlalchemy] fractional second percision- mysql

2012-07-13 Thread Michael Bayer
On Jul 13, 2012, at 6:36 PM, James wrote: > Yeah, I kind of suspected MySQLdb might have problems here. You need to file > a bug report with the DBAPI's bug tracker: > http://sourceforge.net/tracker/?group_id=22307&atid=374932 > > I didn't see anything on the subject of fractional second suppo

Re: [sqlalchemy] fractional second percision- mysql

2012-07-13 Thread James
> > Yeah, I kind of suspected MySQLdb might have problems here. You need to > file a bug report with the DBAPI's bug tracker: > http://sourceforge.net/tracker/?group_id=22307&atid=374932 > I didn't see anything on the subject of fractional second support but I ended up getting the insert worki

Re: [sqlalchemy] fractional second percision- mysql

2012-07-10 Thread Michael Bayer
On Jul 10, 2012, at 2:08 PM, James wrote: > > I have not made any changes, have only proposed some hypothetical changes for > the 0.7 series. I don't have this newest version of MySQL installed, so I > was asking you to test the workaround I gave and/or the patch, to ensure it > solves all t

Re: [sqlalchemy] fractional second percision- mysql

2012-07-10 Thread James
> > > I have not made any changes, have only proposed some hypothetical changes > for the 0.7 series. I don't have this newest version of MySQL installed, > so I was asking you to test the workaround I gave and/or the patch, to > ensure it solves all the problems fully. This testing would als

Re: [sqlalchemy] fractional second percision- mysql

2012-07-08 Thread Michael Bayer
On Jul 8, 2012, at 3:21 PM, James wrote: > Michael, > > Thank you for your response. Your help is greatly appreciated. Just to be > clear, are these changes that you have made and that I can access if I update > to 0.7 or later? And would I simply need to specify the new FracTime type > inste

Re: [sqlalchemy] fractional second percision- mysql

2012-07-08 Thread James
Michael, Thank you for your response. Your help is greatly appreciated. Just to be clear, are these changes that you have made and that I can access if I update to 0.7 or later? And would I simply need to specify the new FracTime type instead of Time? Example: > meta_timings = Table('meta_timi

Re: [sqlalchemy] fractional second percision- mysql

2012-07-03 Thread Michael Bayer
On Jul 3, 2012, at 3:47 PM, James wrote: > Support, > > I recently updated our MySQL database to version 5.6.5 with hopes of > using the newly added fractional second support for the Time datatype. > Using SQLalchemy version 0.6.5 to create our table definitions, I add > the fractional second pe

[sqlalchemy] fractional second percision- mysql

2012-07-03 Thread James
Support, I recently updated our MySQL database to version 5.6.5 with hopes of using the newly added fractional second support for the Time datatype. Using SQLalchemy version 0.6.5 to create our table definitions, I add the fractional second percision paramater to the time type as shown in the MySQ