Sign Up

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 entry to your database table, follow these steps:

  1. Navigate to Your Table: First, ensure that you are viewing the relevant database table to which you want to add a new row.

  2. Click the "Add new entry" Button:

    • Locate the "Add new entry" button at the bottom of the table.

    • Click this button to create a new row.

  1. Populate the New Entry:

    • Once you click the button, a new row with null values will appear in your table.

    • The _id and created_at fields will already be populated

    • You can now fill in the necessary data for each field in that row.

Adding Entries to Lists and Objects

The process of adding new entries to lists and objects follows a similar approach:

  1. Navigate to the List/Object: Open the list or object where you want to add a new entry.

  2. Click "Add new entry":

    • Find the "Add new entry" button within the list or object view.

    • Click the button to add a new entry.

  1. Fill in the Data:

    • A new entry with null values will be created.

    • Enter the required information for the new entry.

Summary

Adding new entries to tables, lists, and objects in Twidget is straightforward and user-friendly. By clicking the "Add new entry" button and filling out the fields, you can swiftly expand your data as needed.

Related Topics

Database Storage

Managing your database storage effectively is crucial for ensuring optimal performance and cost-efficiency when using Twidget. Each entry within your database table utilizes a certain amount of storage space. Twidget provides intuitive tools to help you monitor and manage this storage. Viewing Datab...

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,...

Generate CRUD Endpoints

With Twidget, you can efficiently generate CRUD (Create, Read, Update, Delete) endpoints for your database tables upon their creation. This functionality is designed to streamline the development process and ensure that essential API operations are readily available. Enabling CRUD Endpoints. 1. Crea...

Database Tables

Database tables are essential components of your Twidget workspace, serving as the primary storage locations for your data. In Twidget, each table consists of rows and fields, meticulously designed for efficient data management and retrieval. Structure of Database Tables. - Rows: Each row in a datab...

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...