Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> R: Deleting a record with ADO
You should do something like this
on error resume next
cn.execute <statement>
if err.number then
msgbox err.description
endif
on error goto 0
Doing this You'll be able to report us the error Description You obtain. This is the best way to let us help You ! Bye Bye by Fabio G Received on Thu Nov 15 2001 - 04:33:35 CST
![]() |
![]() |