I want to connect my java program to the SQLite db. What are necessary steps that I have to follow. I want to install sqlite database on my system to access the database.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From the SQLite Homepage:
So you don’t actually install SQLite. To create and work with SQLite Databases, you can use the provided
sqlite-shell, which is a command-line tool. If you are familiar with SQL, this should not be a problem.Although, there are also some GUI-tools out there to work with SQLite…
If you want your Java-application to access and work with an SQLite Database, you’ll need the necessary drivers. A nice topic on this can be found here.