Sign Up

Database Basics

Twidget offers a comprehensive database solution for all workspaces. Here's an overview of how databases are structured and managed within Twidget:

-

Database Structure

  1. Tables: A database may contain multiple tables. Each table stores data in a structured format.

  2. Fields: Tables consist of fields that you can add or remove according to your needs.

  3. Data Types: Each field has a datatype that dictates the type of data it can store. The available datatypes are:

    • Text

    • Number

    • Boolean

    • Date

    • Object

  4. List Data: Fields can also hold lists of data if specified.

Data Storage

  • Rows: Data is stored in rows within a table. Each row represents an individual data entry.

  • Manual Editing: You can manually edit the data via the web application or through no code commands provided by Twidget.

  • Deletion: Be cautious when deleting data as deletion actions are irreversible. Once data is deleted, it cannot be restored.

Authentication

  • Authentication Table: You can designate a table as an authentication table. This is crucial for authenticating API requests. This table will specifically store user password data to manage secure access.

Related Topics

Table Relationships

In Twidget, you can connect database table data using the `_id` field that is automatically generated for every row in a table. This `_id` field is essential for creating and maintaining relationships across different tables. Types of Relationships. A one-to-one relationship occurs when a single row...

Export Data from Tables

Twidget allows you to export data from your database tables to a CSV file. This feature supports the export of both complete and filtered datasets. Here’s how you can utilize this functionality: Features. - Format: Export data in CSV format. - Data Handling: Object and list data types within your ta...

Filter Data

In Twidget, you can easily filter and sort data within the database tables view. This allows you to refine and manipulate the data as needed. Below are the steps and options available for filtering and sorting data. Filtering Data. To filter data: 1. Click on the Filter Button: In the table toolbar,...

Adding Database Table Rows

In Twidget, you can easily add new entries (rows) to your database tables. This feature allows you to expand your data dynamically without the need for complex coding. This document provides a step-by-step guide on how to add rows to your database tables. Adding a New Entry to a Table. To add a new ...

CSV Import

Twidget enables seamless import of data from a CSV file into your database. Follow the steps below to successfully import a CSV file. Step-by-Step Guide. 1. Initiate the Import: - Click on the Import button within the table toolbar. - Select Import from CSV from the dropdown. 2. Open Import Dialog: ...