fixed in trunk. Please check! thank you.
On Mar 4, 2:32 am, Milan Melena <[email protected]> wrote: > I found bug in MySQLAdapter (repository version): > > 1.1 --- a/gluon/dal.py Thu Mar 03 23:20:20 2011 -0600 > 1.2 +++ b/gluon/dal.py Fri Mar 04 09:25:00 2011 +0100 > 1.3 @@ -1470,11 +1470,11 @@ > 1.4 charset = m.group('charset') or 'utf8' > 1.5 driver_args.update(dict(db=db, > 1.6 > user=credential_decoder(user), > 1.7 - > password=credential_decoder(password), > 1.8 + > passwd=credential_decoder(password), > 1.9 host=host, > 1.10 port=port, > 1.11 charset=charset)) > 1.12 - def connect(dbpath=dbpath,driver_args=driver_args): > 1.13 + def connect(driver_args=driver_args): > 1.14 return self.driver.connect(**driver_args) > 1.15 self.pool_connection(connect) > 1.16 self.cursor = self.connection.cursor() > > Best regards > Milan Melena

