clearData

Description

Removes the local table specified from a project.

Input / Parameter

NameDescriptionInput TypeDefaultOptionsRequired

dataset

The name of the dataset to remove.

String/Text

-

-

Yes

extra

Extra parameters stored and passed to callback.

Any

-

-

No

Output

DescriptionOutput Type

Returns an empty list.

Array/List

Callback?

callback

The function to be executed if the dataset is removed successfully.

errorCallback

The function to be executed if the dataset is not removed successfully.

Video

Coming Soon.

Example

The user wants to delete the dataset lcart from local table.

Step

  1. Create a local table lcart.

  2. Add some fields for the table:

    item_code
    item_name
    price
    quantity
  3. Call the "clearData" function and define the dataset.

    dataset: l_cart

Result

Before calling the clearData function, the dataset lcart exists as a local table. )

After calling clearData, l_cart no longer exists.

Last updated