Re: Mysql class works like php

2007-10-07 Thread Bruno Desthuilliers
gardsted a écrit : > Bruno Desthuilliers wrote: >> Andrey a écrit : >>> Hi >>> >>> just a quick question about using MySQL module... are there any api / >>> class available to give a higher level in working with Mysql in python? >>> such as >>> db.fetch_array(), >>> db.fetch_rows(), >>> db.query()

Re: Mysql class works like php

2007-10-07 Thread gardsted
Bruno Desthuilliers wrote: > Andrey a écrit : >> Hi >> >> just a quick question about using MySQL module... are there any api / >> class available to give a higher level in working with Mysql in python? >> such as >> db.fetch_array(), >> db.fetch_rows(), >> db.query(), >> for eachrow in db.fetch_a

Re: Mysql class works like php

2007-10-05 Thread Bruno Desthuilliers
Andrey a écrit : > Hi > > just a quick question about using MySQL module... are there any api / class > available to give a higher level in working with Mysql in python? > such as > db.fetch_array(), > db.fetch_rows(), > db.query(), > for eachrow in db.fetch_array(): > You really find t

Mysql class works like php

2007-10-04 Thread Andrey
Hi just a quick question about using MySQL module... are there any api / class available to give a higher level in working with Mysql in python? such as db.fetch_array(), db.fetch_rows(), db.query(), for eachrow in db.fetch_array(): just as easy as PHP? I think someone might already don