Connecting Vaadin project with sqlite database

Hello All!
I am using SQLite database to connect with vaadin project but I got the following error…Can we connect the sqlite database with vaadin…Please tell me…

java.sql.SQLException: no such table: Users
at org.sqlite.DB.throwex(DB.java:399)
at org.sqlite.NativeDB.prepare(Native Method)
at org.sqlite.DB.prepare(DB.java:135)
at org.sqlite.Stmt.executeQuery(Stmt.java:128)
at jdbc.SQliteResult.getFormulaID(SQliteResult.java:30)
at jdbc.SQliteResult.main(SQliteResult.java:16)
Exception in thread “main” java.lang.NullPointerException
at jdbc.SQliteResult.main(SQliteResult.java:16)

I am 100% sure that users table is exists in database…Because the same query is running for simple java project with same paths…

Hi,

you need to provide some code or more info, because in what you just pasted, there is nothing related to Vaadin.