Table of Contents | ||
---|---|---|
|
Overview
Function |
|
---|---|
Description | Returns the total record count of a table. |
Output | A JSON String array containing the The record count in the ‘message’ element within the argument of the success callback. |
Example
Code Block | ||
---|---|---|
| ||
client.getRecordCount(“SampleTable”"SampleTable", function(data) { console.log (data[“message”"message"]); }, function(error) { console.log(“error"error occured: ”" + error[“message”]); }); |
Sample output
Code Block | ||
---|---|---|
| ||
3 |