0

I want to create a database for my android app.
At first, I want create it fully and then I will use it on my android project.
I can make sqlite database in SQLite IDE (sqlite database browser).
But I want to create it programmatically.
Because I will fetch data from a text file and push it to database.
It will be very fast and easier than IDE to make a database.
So my question, is there any way to make a SQLite database without SQLite database IDE in general java project (not specific to android) and what is that?
Thanks in advance.
Sorry for my bad English.

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
Xplosive
  • 711
  • 3
  • 14
  • 26

2 Answers2

1

You basically would just need to include the appropriate connection jars in your project and implement your own C.R.U.D. operations. A quick google search comes up with a a bunch of good tutorials. Here's a basic one to start with.

SBerg413
  • 14,515
  • 6
  • 62
  • 88
1

You should look at this project https://bitbucket.org/xerial/sqlite-jdbc. I've used it in several projects. very good.

rnkoaa
  • 36
  • 2
  • 2