Results 1 to 6 of 6
Thread: error with connection Mysql
- 06-17-2011, 09:23 AM #1
Member
- Join Date
- Jun 2011
- Posts
- 3
- Rep Power
- 0
error with connection Mysql
Hi,
I use the Mysql database
and when I run the program , out to me these errors
Exception in thread "main" java.lang.ExceptionInInitializerError
at com.mysql.jdbc.NonRegisteringDriver.connect(NonReg isteringDriver.java:285)
at java.sql.DriverManager.getConnection(DriverManager .java:582)
at java.sql.DriverManager.getConnection(DriverManager .java:185)
at NewClass.main(NewClass.java:21)
Caused by: java.lang.RuntimeException: Uncompilable source code - com.mysql.jdbc.Connection is not abstract and does not override abstract method createStruct(java.lang.String,java.lang.Object[]) in java.sql.Connection
at com.mysql.jdbc.Connection.<clinit>(Connection.java :87)
... 4 more
Java Result: 1
please can some one help me ????
- 06-17-2011, 09:32 AM #2
Moderator
- Join Date
- Apr 2009
- Posts
- 10,476
- Rep Power
- 16
Can you show us your code, as well as tell us what JDBC driver you are using and version?
- 06-17-2011, 09:35 AM #3
Member
- Join Date
- Jun 2011
- Posts
- 3
- Rep Power
- 0
i use JDBC 5.0.8
and thats the cod
try
{
Class.forName("com.mysql.jdbc.Driver");
String url = "jdbc:MySQL://localhost:3306/mysql";
Connection con = DriverManager.getConnection( url,"root", "");
System.out.println("URL: " + url);
System.out.println("Connection: " + con);
con.close();
}catch( Exception e )
{ e.printStackTrace();
}
- 06-17-2011, 09:43 AM #4
Moderator
- Join Date
- Apr 2009
- Posts
- 10,476
- Rep Power
- 16
What is the driver though?
What MySQL JDBC jar are you using?
- 06-17-2011, 09:47 AM #5
Member
- Join Date
- Jun 2011
- Posts
- 3
- Rep Power
- 0
mysql connector java 5.0.8
- 06-17-2011, 10:54 AM #6
Moderator
- Join Date
- Apr 2009
- Posts
- 10,476
- Rep Power
- 16
Similar Threads
-
connection my mysql
By pranjul137 in forum New To JavaReplies: 5Last Post: 04-06-2010, 08:26 PM -
TWO IPs FOR MY MYSQL CONNECTION
By tugalsan in forum JDBCReplies: 2Last Post: 03-21-2010, 08:46 PM -
Java-mysql connection
By Kligham in forum New To JavaReplies: 16Last Post: 11-25-2009, 01:28 PM -
java mysql connection
By sysout in forum New To JavaReplies: 5Last Post: 10-31-2009, 10:48 AM -
no mysql connection
By scchia in forum New To JavaReplies: 12Last Post: 07-19-2008, 07:57 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks