Where is the MySQL JDBC jar file in Ubuntu?

后端 未结 3 513
我在风中等你
我在风中等你 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:34

    If you're using a version of Ubuntu prior to 19.04, you'll need to install libmysql-java, the MySQL JDBC driver, because the connector is not in the Ubuntu-packaged MySQL package that you've already installed. Versions after that do not publish that package.

    Once it's installed, you'll have the file /usr/share/java/mysql.jar, which is an indirect symlink to the actual jar file.

    Alternatively, install the mysql-apt-config package, update, and you'll be able to install all currently supported MySQL software with apt.

提交回复
热议问题