Where is the MySQL JDBC jar file in Ubuntu?

后端 未结 3 617
我在风中等你
我在风中等你 2021-01-31 07:40

I have installed MySQL 5.5.32 via apt-get install into Ubuntu 13.04.I want to use it in a Java project.For this i must have MySql connector jar.I can not find it.I

3条回答
  •  感情败类
    2021-01-31 08:29

    First, apt-get install libmysql-java

    Then mysql.jar is located in /usr/share/java/mysql.jar.

    Third, in Eclipse, do this as: Project -> Properties -> Java Build Path -> Libraries -> Add External JARs -> select /usr/share/java/mysql.jar

提交回复
热议问题