View Web SQL data

This guide shows you how to use Chrome DevTools to inspect Web SQL data.

View Web SQL Data

  1. Click the Sources tab to open the Application panel. Expand the Web SQL section to view databases and tables. In Figure 1 below html5meetup is a database and rooms is a table.

    The Web SQL pane.

    Figure 1. The Web SQL pane.

  2. Click a table to view that table's data.

    Viewing the data of a Web SQL table.

    Figure 2. Viewing the data of the rooms Web SQL table.

Edit Web SQL data

You can't edit Web SQL data when viewing a Web SQL table, such as in Figure 2 above. But you can run statements from the Web SQL Console that edit or delete tables. See Run Web SQL queries.

Run Web SQL queries

  1. Click a database to open a console for that database.
  2. Type a Web SQL statement, then press Enter to run it.

    Using the Web SQL Console to delete a row from a table.

    Figure 3. Using the Web SQL Console to delete a row from the rooms table.

Refresh a Web SQL table

DevTools does not update tables in real-time. To update the data in a table:

  1. View a Web SQL table's data.
  2. Click Refresh Refresh.

Filter out columns in a Web SQL table

  1. View a Web SQL table's data.
  2. Use the Visible columns text box to specify what columns you want to show. Provide the column names as a CSV list.

    Using the Visible Columns text box to reduce the number of columns shown.

    Figure 4. Using the Visible Columns text box to only show the room_name and last_updated columns.

Delete all Web SQL data

  1. Open the Clear Storage pane.
  2. Make sure that the Web SQL checkbox is enabled.

    The Web SQL checkbox.

    Figure 5. The Web SQL checkbox.

  3. Click Clear site data.

    The Clear Site Data button.

    Figure 6. The Clear Site Data button.