DBeaver UI
Create a New SQLite Connection
Click the "New Database Connection" button (plug icon) in the toolbar or
Ctrl+Shift+N
Select SQLite from the list of databases

Click Next
In the Path field, click Browse and choose where to save your database file

Name your database file:
tasks.sqlite3EXTENTION IS IMPORTANTClick Test Connection to verify everything works
Click Finish
Browse through database

Create and run queries
Open a new SQL script to write your queries in. 
When running queries it is important to remember few things: 
Orange triangle will only run the selected query.
Little document with triangle will run the entire script file.
Query is selected when it is manually selected or the cursor is standing on the query.
Always remember to end queries with semi-colon:
;! Otherwise the edit does not know when query ends!
Errors will be marked
In case of errors, DBMS will mark them red. If you hover on the error, DBMS will tell you the exact issue with your query! 
Saving queries for homework
When done with queries, save them to your homework repo using this "Save As" like from any other software. Remember the .sql extention! 
Last updated