java.sql.SQLException Path to 'path' does not exist -
i writing because created simple login gui app test sqlite database student of database systems , new it, used java through eclipse, whenever run application message java.sql.sqlexception path c:user//path not exist error screenshot i have searched lot on google couldn't find solution there similar question on stackoverflow there not enough answer related problem, want know how change code make application work , connect database? any appreciated.thanks here code: package dbms; import java.sql.*; import javax.swing.*; public class dbconnection { connection conn = null; public static connection dbconnector(){ try{ class.forname("org.sqlite.jdbc"); connection conn = drivermanager.getconnection("jdbc:sqlite:c:\\users\\chusm\\workspace\\dbms\\sqlite\\dbms.sqlite"); joptionpane.showmessagedialog(null, "connection successful!!!"); return conn; } catch(exception e){ joptionpane....