Hi All,
Hi Ananta
Need quick help to resolve one issue i am getting now.
I am a new user of SQLite.
my code:
connection =
DriverManager.getConnection("jdbc:sqlite:C:\\sqllite\\sqlite-tools-win32-x86-3280000\\Stories.db");
Statement st = connection.createStatement();
ResultSet b = st.executeQuery("select count(*) from stories;");
Have you tried running the query using the cli on Stories.db?
sqlite3 'path-to-Stories.db'
sqlite> select count(*) from stories;
What output do you get?
-Tommy
_______________________________________________
sqlite-users mailing list
[email protected]
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users