[DB-SIG] PySQL/insert a list of tuples....

Denis Cartier Millon Denis.CM@Wanadoo.fr
Thu, 22 Aug 2002 15:10:06 +0200


I  want insert a sequence of sequence (list og tuples) in a table ,
(x comme from the script select * from Mytable with an fethchall)

and the script is :
cur=conn.cursor()
cur.executemany("insert into Mytable values (%s)",x) # is there a 
solution thanks.....