Creating new MySQL Database

Create an empty database and grant pulseuser access:

Add MySQL Server Connection

To add a connection goto Connections->"Add Data Connection" and fill in your details.
You can try clicking test to see if the connection works before adding it.

Pulse connecting to mysql database

Populating the Tables

Copy and Paste the below code into the SQL Editor and press "Send Query":

You can run "select * FROM ohlc LIMIT 10;" to check the data is there:

MySQL Data Insert

Adding our First Charts

  1. On the dashboards listing page, click add
    Add MySQL Dashboard
  2. Click on the newly created dashboard to go into it. Either click on edit or toggle design mode once in the dashboard.
    Edit MySQL Dashboard
  3. On the component bar, click "Time Series" to add a chart.
    Add Chart to Dashboard
  4. Within the Editor
    • Select the MySQL server
    • Enter the query:
      select date,adjClose from ohlc where sym='GOOG';

    MySQL Time-Series Chart

Adding a Table

  1. On the component bar, click table to add a table.
  2. Within the Editor
    • Select the MySQL server
    • Enter the query:
      select * from stock where sym='GOOG';

Adding an OHLC Chart

The next SQL chart we want is a candlestick:

select date,open,high,low,close,volume from ohlc where sym='AMZN' ORDER BY date desc LIMIT 100;
You should now have a chart like this:

MySQL Candlestick Chart

User Interaction with Forms

Forms allow user interaction by placing user input within the SQL queries. To create one:

  1. Click "User Form" on the component bar to add that component.
  2. Within the Editor, click "Add Component" to add a dropdown component.
  3. Within the Component Editor, select SQL as the data source
  4. Specify the query:
    select distinct sym from ohlc ORDER BY sym;
  5. Click the dropdown button to test it.

Using Form Values in Charts

To use form values in charts, we use the key name surrounded by parentheses e.g. ((key1)).
The SQL code then changes from/to:

select date,adjClose from ohlc where sym='GOOG';
select date,adjClose from ohlc where sym=((key1));

Similarly update the other chart queries

Inserting more data to see a Live Chart Update

  1. Add another time-series chart
  2. Specify the query:
    select  * from quote where sym='GOOG' ORDER BY time desc;
  3. Specify a 1 second refresh time
  4. Copy paste the below code into the code editor
  5. Press Ctrl+Enter to run one line, then the next and so on.
    As you run each line the chart should update.
MySQL Database Quote Chart