View Full Version : How to check a return code after executing sql statemnt from aspx page


wan2fly99
03-31-2010, 05:17 AM
I execute an insert sql statement into an Oracle Database

How can I check that the statement executed okay

my code is

db = createobject(ÀDODB.Connection`)
db.open(`Provider=MSDAORA........)
strSQL = ìnsert into fuel.....`)

db.Execute(strSQL)

what do I check after thisÉ