[ANN] PySQLite 0.3.0 released

Дамјан Г. пенгуиниста at маил?=.=?iso-8859-5?Q?нет?=.=?iso-8859-5?Q?мк
Thu Sep 12 18:21:42 EDT 2002


>> for row in cursor:
>>        print "%14s, %15s, %19s, %8s, %25s" % tuple(row)
>> ?
>> 
>> Terry J. Reedy
>> 

> You can already do it, using iter():

> for row in iter(cursor, None):
> 	print ....

you mean:

for row in iter(cursor.fetchone, None):
	print ...
	


-- 
Дамјан

	In a world without walls and fences,
	do we care about Windows and Gates ?




More information about the Python-list mailing list