Re: [Zope] MySQLDA Problems with simple constant/function queries

2000-06-26 Thread Monty Taylor
This is actually fixed in both 1.1.4 and in 1.2.0. The problem has to do with type conversions from a dictionary in the adapter. Any type of non-row function or aggregate returns a type of 'unhandled' which was not mapped in the conversion dictionary. This is fairly much the bug that called for 1.

Re: [Zope] MySQLDA Problems with simple constant/function queries

2000-06-24 Thread Andrew Kenneth Milton
+[ Stefan Franke ]- [Charset iso-8859-1 unsupported, filtering to ASCII...] | I'm using MySQLDA 1.1.3 on Win32. When I type the following queries | into the test tab edit box, I get the traceback below: | | select LAST_INSERT_ID() | | or | | s

Re: [Zope] MySQLDA Problems with simple constant/function queries

2000-06-24 Thread Chris McDonough
Stefan Franke wrote: > When I look into db.py, the error doesn't look very hard to fix, I think > I'll give tomorrow. Is there some API documentation of what a DA is > supposed to do? Zope site's not responding for me currently, so I can't give you a URL, but please search the Zope.org site for "

[Zope] MySQLDA Problems with simple constant/function queries

2000-06-24 Thread Stefan Franke
I'm using MySQLDA 1.1.3 on Win32. When I type the following queries into the test tab edit box, I get the traceback below: select LAST_INSERT_ID() or select 1 from Of course "select * from " works. When I look into db.py, the error doesn't look very hard to fix, I think I'll give tomorr