Creating Database in JDBC Sqlite Creating Database in JDBC Sqlite sqlite sqlite

Creating Database in JDBC Sqlite


SQLite creates new database file on first attempt to connect if file did not exist already.

So, simply use jdbc:sqlite:filename.db as JDBC connection string, and provided that you have permission to create filename.db, it will be created automatically. You can also manually pre-create this file with 0 size if you want.