Posted by othellomy on 12/28/06 10:27
fireball wrote:
> well,
> is that possible at least, to exit script on given condition?
Do you want a return code or not? If you don't want a return code
then you can wirite:
If <condition> Return
If you want a return code then you need to use a stored proc and inside
the procedure you can write:
If <condition> return 100
In your application you can check for status of the called procedure
and take action based on that.
Navigation:
[Reply to this message]
|