Sign Up

Database

Twidget offers many commands to manage data in your database. Below is a list of the available commands and their functionalities:

-

Get Data

Retrieve an entry from a table.

Get Multiple Data

Retrieve multiple entries from a table.

Save Data

Save an object to a database table.

Save Multiple Data

Save multiple objects to a database table.

Update Data

Update an entry in a table.

Update Multiple Data

Update multiple entries in a table.

Delete Data

Delete an entry from a table.

Delete Multiple Data

Delete multiple entries from a table.

Related Topics

Send External HTTP Request

Using Twidget, you can send external HTTP requests effortlessly. This functionality allows you to communicate with external servers or APIs. Below, you will find the necessary parameters and structure to set up an HTTP request. Parameters. - URL: The endpoint to which the request will be sent. - Met...

Conversion

Overview. Twidget's conversion commands allow you to easily convert different data types to the required format. Below is a list of the available conversion commands and examples of how to use them. The `Convert to Text` command converts the provided value to a text (string) format. Examples: - `123...

Conditionals

Condition Command. The Condition Command allows you to perform actions based on whether an expression evaluates to true or false. You can nest other commands within the true or false branches of the condition, enabling complex logic flows. - Expression Builder: Validate two variables to equal true. ...

Date

Twidget offers a variety of commands to manipulate date objects. Below are the available commands along with their respective descriptions, inputs, and outputs. Current Date. Description: Returns the current date and time. Output: - Type: DATE Add Time. Description: Returns the date plus a specified...

Return

The `return` command in Twidget is a special command used to halt the current command workflow and immediately return a specified result. This command overrides any subsequent processes and outputs the return result regardless of the rest of the workflow logic. This command is particularly useful fo...