Creating and Managing Collections
Collections are the foundation of data management in LiveCode Create. They act as structured datasets that store, organize, and provide access to your app's information. By creating and managing Collections, you can power dynamic and data-driven apps effortlessly.
This guide will show you how to create, organize, and manage Collections effectively.
What is a Collection?
A Collection is a structured dataset that holds records, where:
- Fields represent the data categories (like columns in a table).
- Records are the individual entries within the Collection (like rows in a table).
For example, if you are creating an Employee Directory, your Collection might include:
Name | Job Title | Department | Office |
---|---|---|---|
Alice Smith | Project Manager | Marketing | London |
Bob Johnson | Software Engineer | IT | New York |
Collections form the basis for Dataviews and can be bound to widgets to display or interact with the data dynamically.
Accessing Collections
To create and manage Collections:
- Open the Collections Panel from the left-hand toolbar.
- The left panel will display existing Collections and Dataviews.
Creating a Collection
Follow these steps to create a new Collection:
-
Open the Collections Panel:
- Click the Collections icon in the left-hand toolbar.
-
Create a New Collection:
- Click + New Collection.
- Give your Collection a clear, descriptive name
(e.g.,
Employees
,Tasks
,Products
).
- Add Fields to Your Collection:
- Define the fields you need in your dataset.
- Select the appropriate field type for each field:
- Text: For names, descriptions, or general text.
- Number: For quantities, prices, or numeric IDs.
- Date: For dates or timestamps.
- Enum: An enum is a list of fixed, named choices.
- Save Your Collection:
- Click Create Collection to finalize your new Collection.
- You will return to an overview screen for the collection.
Managing Fields in a Collection
Once you have created a Collection, you can modify its fields from the overview screen:
To manage fields:
- Open your Collection in the Collections Panel.
- Use the Collection overview to make changes:
- Click + Add Field to add a new field.
- Double click on an existing field to rename it or change its field type.
- Use the Delete Icon to remove a field.
Adding and Managing Records
Once your Collection structure is in place, you can add records (entries):
Adding Records
- Open your Collection in the Data Panel.
- Click View Records.
- Click + Add Record.
- Enter data for each field in the record.
- Click Add New Record to add the record.
Editing Records
- Double click on an existing record to update its fields.
- Save changes to ensure the record is updated.
Deleting Records
- Select the record you want to delete.
- Click the Delete Icon or press the Delete icon to remove it.
For further learning: