Arihant
Arihant

Reputation: 4047

Is there a way to connect MySql Database to eclipse?

Is there a way to use eclipse to establish connection to mysql database. Also is if that can be connected, will that be connection made in such a way that even the app would be connected to the mysql database

Yes, the question is kind of dumb but rather than being in doubt all the time, i would rather look a bit foolish and ask stupid questions!

Upvotes: 0

Views: 6019

Answers (1)

kgiannakakis
kgiannakakis

Reputation: 104178

You can use Database tools to connect a MySql database to Eclipse. See a tutorial here.

You can't connect an Android application to a MySql db directly. You would need to provide a web service that will connect with the db and allow the Android application to do read/write operations on it.

Upvotes: 2

Related Questions