Intelij Windows 10 SQLITE Access denied
Intelij Windows 10 SQLITE Access denied This is a Java Project which connect to a sqlite database. I didn't really know where is the problem, I am making a login app to my manager here is my code : package dbUtil; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class dbConnection { public static final String USERNAME = "dbuser"; public static final String PASSWORD = "dbpassword"; public static final String CONN = "jdbc:mysql:\localhost/login"; public static final String SQCONN = "jdbc:sqlite:\dbname.sqlite"; public static Connection getConnection() throws SQLException{ try{ Class.forName("org.sqlite.JDBC"); return DriverManager.getConnection(SQCONN); }catch (ClassNotFoundException e){ e.printStackTrace(); } return null; } } And here is the error i found, i didn't know what exactly is happening: java.sql.SQLException: opening db: 'dbname.s...