[sqlalchemy] how to call group_concat function in MySQL?

2007-04-22 Thread Arun Kumar PG
Hi Guys, How can I call group_concat() function in MySQL using the function gateway ? something like select([child, func.group_concat(Child.c.xxx).label(count)], group_by=[]).. any clue ? Thx - A --~--~-~--~~~---~--~~ You received this message because you are

[sqlalchemy] [PATCH]: SSL support for MySQL

2007-04-22 Thread [EMAIL PROTECTED]
A simple (too simple?) patch to support SSL connections with MySQL. Use the following syntax to use it: mysql://user:[EMAIL PROTECTED]/db?ssl_ca=path-to-ca-file Tested with SA from svn, mysql-5.0.27, python-2.4.4 and MySQL- python-1.2.1. - Terje Index: lib/sqlalchemy/databases/mysql.py

[sqlalchemy] Re: [PATCH]: SSL support for MySQL

2007-04-22 Thread Michael Bayer
thanks, r2532. note that you can also the connect_args dictionary to create_engine, although i know this is not as easy with property-file based configuration frameworks... On Apr 22, 2007, at 10:28 AM, [EMAIL PROTECTED] wrote: Index: lib/sqlalchemy/databases/mysql.py