Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear all,
Can any one please tell me how can we get a particular message that has occurred during reloading of application.
Ex: if any error comes while reloading in server it gives msg like Reload fail,
But i need to see whether is there any way so that we can get exact msg what is the problem so that the application didnt reloaded.
Please Suggest a answer.
Regards,
Pranav
There are different ways (as usual):
I prefer method 1 and 3.
1 would also inform the users that the data are probably not trustworthy.
HTH
Peter
Thanks Peter for Reply,
will the application will reload the other tables if in 1st table error occurs
Regards,
Pranav
If within the same application, you may always terminate the execution with
IF condition THEN EXIT SCRIPT; ELSE ...; END IF
Otherwise you may create a file with comment on the successful loading (or not), which then is picked up by another application - and then the above check may take place.
HTH
Peter