Hi Bill,
Could you let us know the data types of the table columns. Also which version of DB2 and ibm_db driver are you on.
I tried the below sample program and it works fine. Is your program same as below or am I missing something.
#create table tabmany(id varchar(10), time timestamp,name varchar(10))
import ibm_db
ibm_db_conn = ibm_db.connect('pydb','user','password')
import ibm_db_dbi
conn = ibm_db_dbi.Connection(ibm_db_conn)
cur=conn.cursor()
sql="insert into tabmany (id,time,name) values (?,current timestamp,?)"
rows = (('first1', 'second1'), ('first2','second2'))
result = cur.executemany(sql, rows)
print "Executed"
cur.close()
conn.close()
Thanks
Praveen