Reputation: 1
My problem is that I don't even know what I am looking for ... I created an app that should save data even without an internet connection and than update it into a External Server running SQL.I need to have my application to store the data into the pc itself
How do I accomplih that? What am I looking for? Derby?
Upvotes: 0
Views: 63
Reputation: 393
in your code use
static final String DB_CONNECTION = "jdbc:mysql://127.0.0.1/dataBasename
"
Upvotes: 1