Frequently Asked Questions¶
FAQ coming soon
Where are the log files?¶
Log files are stored in the logging directory in the application installation folder. You can also access them via the GUI menu: Help > View Logs.
How do I connect to my database?¶
Connection strings should be entered without the JDBC protocol prefix. For example:
- PostgreSQL: //localhost:5432/mydb (omit jdbc:postgresql:)
- MySQL: //localhost:3306/mydb (omit jdbc:mysql:)
- SQLite: /path/to/database.db (omit jdbc:sqlite:)
See the CLI Guide for detailed configuration examples.