Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> R: Deleting a record with ADO

R: Deleting a record with ADO

From: Fabio GRANDE <fabiog_at_fileita.it>
Date: Thu, 15 Nov 2001 11:33:35 +0100
Message-ID: <9t04lu$bqt$1@fe1.cs.interbusiness.it>


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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US