|
|
|
|
|
by oleksandr_dem
330 days ago
|
|
It uses the CLI to connect to the database. When you start the tool, it creates a server on your localhost (localhost:4466), and acts as: - Local database: it stores some stuff locally, like saved queries or DB configurations - Query runner: when you run a query in the webapp it will call your localhost server, which will connect to the database and execute the SQL statement It is technically possible to host it elsewhere, but I wouldn't recommend it (there is no documentation). |
|