Re: mysql connectivity problem with ApachNetbeans 18:Exception: com.mysql.jdbc.Driver

2023-08-28 Thread Juan Algaba
1. Proper dependency for the MySQL driver in your pom.xml file. I.e. > > > > mysql > > mysql-connector-java > > 8.0.xx > > > >1. After the build check you .m2/repository/mysql directory to see if > the jar file was downloaded >

Re: mysql connectivity problem with ApachNetbeans 18:Exception: com.mysql.jdbc.Driver .

2023-08-26 Thread Mauro Chi
The Java classe driver Is changed. The new driver class Is: com.mysql.cj.jdbc.Driver Class.forName("com.mysql.cj.jdbc.Driver") https://stackoverflow.com/questions/52032739/loading-class-com-mysql-jdbc-driver-this-is-deprecated-the-new-driver-class Il mer 9 ago 2023, 06:23 Zulfi Khan ha

Re: mysql connectivity problem with ApachNetbeans 18:Exception: com.mysql.jdbc.Driver

2023-08-25 Thread Richard Grin
tility and find if your driver class is there. *From:* Zulfi Khan *Sent:* Monday, August 21, 2023 9:42 PM *To:* NetBeans Mailing List *Subject:* Re: mysql connectivity problem with ApachNetbeans 18:Exception: com.mysql.jdbc.Driver Hi, Thanks for your response. (a)Mavern Project: I ha

Re: mysql connectivity problem with ApachNetbeans 18:Exception: com.mysql.jdbc.Driver

2023-08-22 Thread René Aravena
l-connector-j-8.0.33-1ubuntu18.004_all and is also part of my project’s > library.* > > > *I am getting the following output:* > > *Starts1...* > > *Exception: com.mysql.jdbc.Driver* > > *Starts2...* > > *BUILD SUCCESSFUL (total time: 32 seconds)* > > > *I have atta

Re: mysql connectivity problem with ApachNetbeans 18:Exception: com.mysql.jdbc.Driver

2023-08-14 Thread Juan Algaba
installation of another mysql-connector-j* > > *R3:shows the poped window when I clicked the services window* > *I have put my question on the reddit forum but they are not able to guide > me.* > > *Please solve my problem.* > > > *Zulfi.* > > > > > > On Wednesday

RE: mysql connectivity problem with ApachNetbeans 18:Exception: com.mysql.jdbc.Driver

2023-08-09 Thread Greenberg, Gary
with ApachNetbeans 18:Exception: com.mysql.jdbc.Driver Hi, Mysql driver error on Apachi netbeans 18.0 Hi, I am working on ubuntu 18.04. mysql version is: mysql Ver 14.14 Distrib 5.7.42, for Linux (x86_64) using EditLine wrapper I have written the following code for connecting with database

Re: mysql connectivity problem with ApachNetbeans 18:Exception: com.mysql.jdbc.Driver

2023-08-08 Thread Andreas Reichel
Zulfi, you will need to add the MySQL JDBC Driver to the classpath (or the program you are running). And maybe you will want to look for a General Java Programming Forum or List. Apache Netbeans is meant for concerns about the IDE. Good luck and regards Andreas On Wed, 2023-08-09 at 04:22

mysql connectivity problem with ApachNetbeans 18:Exception: com.mysql.jdbc.Driver

2023-08-08 Thread Zulfi Khan
Hi, Mysql driver erroron Apachi netbeans 18.0 Hi, I am working onubuntu 18.04. mysql version is: mysql Ver 14.14Distrib 5.7.42, for Linux (x86_64) using EditLine wrapper I have written thefollowing code for connecting with database: importjava.sql.Connection;