Java Connecting to remote MySQL database

后端 未结 3 1015
梦如初夏
梦如初夏 2021-01-16 00:17

Hey guys im trying to connect to my remote mysql database and my code gives me this error:

java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
at java.ne         


        
3条回答
  •  有刺的猬
    2021-01-16 01:14

    As Dave points it out, the first thing is to check if a jar containing the com.mysql.jdbc.Driver class is amongst your other libraries.

    If not, add it.

提交回复
热议问题