Skip to main content

Connecting a SQL database

To bring a SQL database into your workspace, open the SQL tables section and add a new source.

Adding a source

  1. In the Sources panel, select the + button.
  2. Choose your database type: PostgreSQL, MySQL, or Microsoft SQL Server.
  3. Fill in the connection configuration and save.

You can add as many sources as you need by repeating the same process.

Connection settings

The exact fields depend on the database, but you'll typically provide:

SettingDescription
HostThe hostname or IP address of the database server.
PortThe port the database listens on (e.g. 5432 for PostgreSQL, 3306 for MySQL, 1433 for SQL Server).
DatabaseThe name of the database (or schema) to connect to.
Username / PasswordCredentials with permission to read (and write, if needed) your tables.
SSLWhether to connect over SSL/TLS. Enable this for production databases.

Fetching tables

After connecting, SuperToolMake reads your database schema and lists the available tables in the Sources panel. Select a table to view and edit its rows in the data grid.

When fetching tables, SuperToolMake maps each external column to one of its internal column types. You can change how any column is interpreted later by editing it.

Editing the connection

To update a source's connection details, select the source in the Sources panel and edit its configuration. This is also where you manage authentication and connection options.

Next steps