My Try..Except statement is not working. I am trying to execute stored procedures on the SQL Server, but it is not running.
Code Snipit:
Try
Form_GL.ClearBnkProc.Prepare;
Form_GL.ClearBnkProc.Execproc;
except
The code always drops out at the "execproc" stage, and goes into the exception (the except). Is there anything that the "try" needs in order to execute the execproc?
Code Snipit:
Try
Form_GL.ClearBnkProc.Prepare;
Form_GL.ClearBnkProc.Execproc;
except
The code always drops out at the "execproc" stage, and goes into the exception (the except). Is there anything that the "try" needs in order to execute the execproc?