2

How to connect with MySQL database using J2ME?

exebook
  • 32,014
  • 33
  • 141
  • 226
Rana Anees
  • 307
  • 2
  • 13

2 Answers2

3

You can't have MySql DB on phone, so at j2me level either you can

gnat
  • 6,213
  • 108
  • 53
  • 73
jmj
  • 237,923
  • 42
  • 401
  • 438
2

yes, you can do it in Java ME, But in Mobile phone you can not directly connect to MySql or any other external Database. To connect with MySql Database you need to make request to web service for same. That means you need to create one web service which will make database connectivity for you. After Creating this Web Service, you need call this web service from Java ME Code.

for calling web service, please check Jigar Joshi's answer here. you can also check here.

Community
  • 1
  • 1
Lucifer
  • 29,392
  • 25
  • 90
  • 143