Forum Discussion
RKDY91_1
13 years agoNew Contributor
I found the solution by trying various options.
here is the solution
execute the insert in parts
first execute the insert without semi colon
then execute the commit statement
qry.execute(insert into mguser.psa (activity_date,activity_time)values('xyx','xyx'))
qry.execute("commit")
this is strange but does the work for me.
Thanks,
Tony
here is the solution
execute the insert in parts
first execute the insert without semi colon
then execute the commit statement
qry.execute(insert into mguser.psa (activity_date,activity_time)values('xyx','xyx'))
qry.execute("commit")
this is strange but does the work for me.
Thanks,
Tony