Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there anyone who tried JDBC connection in android because in Android 2.3 JDBC is supported.

I have to connect with Mysql without web service.

I have made application but it gives me error

public class MysqlConnect extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.main);
System.out.println("MySQL Connect Example.");
Connection conn = null;
String url = "jdbc:mysql://localhost:3306/";
String dbName = "jdbctutorial";
String driver = "com.mysql.jdbc.Driver";
String userName = "root"; 
String password = "root";
try {
  Class.forName(driver).newInstance();
  conn = DriverManager.getConnection(url+dbName,userName,password);
  System.out.println("Connected to the database");
  conn.close();
  System.out.println("Disconnected from database");
} catch (Exception e) {
  e.printStackTrace();
}
}
}

i am getting error in getConnection. error is like java.lang.VerifyError : com.mysql.jdbc.MysqlIO

Thanks in advance.

share|improve this question
can you post the stack trace for this ?$ – njzk2 Apr 25 '12 at 14:05

2 Answers

The VerifyError probably happens because of wrong class file signature.

Check here:

JDBC was included in previous releases as well - the key issue is to include the proper driver class for your database and make sure it can work with the Android runtime.

share|improve this answer
Hi, Thanks for your reply. I have already added mysql-connector-java in my application. Is there any example which is successfully connect with mysql through jdbc ? – djk Dec 15 '10 at 9:51
Have you run this jar file thrugh the "dx" program? – Sebastian Roth Dec 15 '10 at 9:54
1  
dx is not required. When you add an external jar it's done automatically. – Kurian Dec 6 '11 at 10:31

I have successfully connected to MySQL, Oracle and SQL Server directly from an Android device using JDBC and the regular type 4 drivers used for desktop Java applications for the respective databases.

Just search for a desktop JDBC sample. The same code works without any modifications on Android. Make sure you add the .jar file of the driver to the project in Eclipse. The compiler will automatically convert the .jar driver into Dalvik compatible package.

share|improve this answer
2  
hi, can you please explain in brief. coz so many people trying to do this, but not get successful result. if possible please edit your answer with some code snapshot, which jars required to build etc... – milind Sep 22 '11 at 13:14
2  
pastebin.com/K42jvLJu Just add the respective Type 4 driver such as ojdbc14.jar to the project as an external JAR. – Kurian Dec 6 '11 at 10:47

protected by Community Aug 12 '12 at 21:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.