I’m writing a program which will need to create and make use of an sqlite database. What I need to do now is create the database and make sure all my classes can interact with it. I have looked online but alot of what i find contradicts itself. Can anyone explain simply how I would go about creating this database and connecting to it first of all?
Share
You need to know the JDBC tutorial. It’s how Java interacts with relational databases, including SQLLite.
SQLLite has lots of tutorials too, including this one.
I have no idea what you found that contradicts itself.