Data Variables
Introduction
Erizos Studio UI Builder supports external database that help with organizing and structuring data. It allows users to add, edit, and manage different database sources. Currently, five types of sources are supported: MSSQL, MySQL, Google Sheets, Google Firebase, and SpreadSheet File.
To access Sources, click on the Database icon, under Sources click Add/Inspect Data Variables.
In the updated interface, the process begins with creating a Data Variable first.
In the opened Data Variables modal, you can:
- Create a new variable or choose an existing one.
- Then, assign a Data Feed to the variable.
- If a suitable data feed does not exist, you will be prompted to create one.- - During this creation process, if a Data Source is also missing, you can create it directly from the same interface as shown in the
.gif
below.
Adding a MSSQL Source
- Click the Database icon
- Under Sources, click the Add Sources Icon.
- Select the MSSQL type Source.
- Name your Source.
- Add the Object Configuration for your Source and click Create.
1 2 3 4 5 6 7 8 9 10 |
|
Adding a MySQL Source
- Click the Database icon
- Under Sources, click the (Add Sources icon).
- Select the My SQL type Source.
- Name your Source.
- Add the Object Configuration for your Source and click Create.
1 2 3 4 5 6 7 |
|
Adding a Google Sheet Source
- Click the Database icon
- Under Sources, click the
- Select the Google Sheets type Source.
- Name your Source.
- Add the Object Configuration for your Source and click Create.
1 2 3 |
|
Error
If you encounter the error Invalid Google Sheet Format when selecting Google Sheet as a Data Feed source, it usually means the file is not in the proper Google Sheets format.
To fix this:
- Open the Google Sheets link.
- Go to File → Save as Google Sheets.
After saving, you can add it successfully as a Data Feed.
Note
If no apiKey is provided, make sure the Google Sheet share setting of the Sheet you want to use is set to "Anyone with the Link".
Adding a SpreadSheet Source
- Click the Database icon
- Under Sources, click the
- Select the SpreadSheet File type Source.
- Name your Source.
- Type the Name, click Create.
1 2 |
|
Adding a Google Firebase Source
- Click the Database icon
- Under Sources, click the
- Select the Google Firebase type Source.
- Name your Source.
- Add the Object Configuration for your Source and click Save.
1 2 3 4 5 6 7 8 9 |
|
Accessing Sources
The access Sources, users just need to call the function DataService
and provide the name of the Source and the Query as Parameters.
In the Example below, we populate a TextBox when a button is clicked. The button fetches the data from our Source. We have a source named 'MySource' as the first Parameter, the second Parameter is the Query we want to run in our database.
1 2 3 4 5 |
|