The GetLastErrorString Method of the ODAX ActiveX Object returns a string containing an error message relating to the last error that occurred.
GetLastErrorString (Method of the ODAX ActiveX Object) Syntax var strErrorMsg = object.GetLastErrorString();
Return Values
Name Description StrErrorMsg Returns a string containing an error message
Examples
The following javascript uses the FileExists method:
<script> var ax = new ActiveXObject("CeODAX.ODAX"); var count = ax.Select('SELECT * FROM \'\\application\\test.xml\';', ',', false); ax.Clear(); var colval = ax.Get("field1");// this will result in an error if(colval.length < 1) { var strErrorMsg = ax.GetLastErrorString(); alert(strErrorMsg); } </script>
Copy example to clipboard
Additional Information
Supported Platforms Windows Mobile, Windows CE Persistence Runs immediately. Min. Requirements None.