What is the proper way to trap a duplicate insert.

I’m using Z MySQL.

 

try:

  context.duptest_qry()

except Exception, v:

  if v[0]==1062 :

    print "Duplicate Insert"

 

I’ve tried this but Zope will not let me access v[0] which is set to 1062 on dups.

 

Thanks!

 

Andy

 

_______________________________________________
Zope-DB mailing list
Zope-DB@zope.org
http://mail.zope.org/mailman/listinfo/zope-db

Reply via email to