Thursday
Feb212013
SquidClearAllColumns
- Clears all data in all the columns. All content will be lost.
- Removes all the data tabs from SQUID.
- Allows for the cleaning out of the data without having to close and reopen SQUID.
Prototype
int SquidClearAllColumns(int iSquid);
- Parameters
iSquid Squid Connection Handle
- Return Values
0 Operation successful -1 Error occurred, call SquidGetLastError for details
Example
int iSquid;
lr_load_dll("SQUID-REST.dll");
iSquid = SquidConnect("http://localhost:8000");
SquidSendData(iSquid, "Column 1", "Some Data");
SquidSendData(iSquid, "Column 2", "More Data");
SquidSendData(iSquid, "Column 3", "Last Data");
SquidClearAllColumns(iSquid);
SquidDisconnect(iSquid);