Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I download source for MySQL Connector/J

Tags:

mysql

jdbc

Googling didn't help

like image 680
Aivar Avatar asked Nov 22 '10 13:11

Aivar


People also ask

Where can I find connector J?

The source code for Connector/J is also available on GitHub at https://github.com/mysql/mysql-connector-j. Connector/J is also available as a Maven artifact in the Central Repository.

Where is MySQL Connector J installed?

java' is stored in E:\ and 'MySQL-connector-java-5.1. 31-bin. jar' is stored in "C:\Program Files\MySQL\MySQL Connector J\".

What is connector J in MySQL?

MySQL Connector/J is the official JDBC driver for MySQL. MySQL Connector/J 8.0 is compatible with all MySQL versions starting with MySQL 5.6. Additionally, MySQL Connector/J 8.0 supports the new X DevAPI for development with MySQL Server 8.0. Online Documentation: MySQL Connector/J Installation Instructions.


2 Answers

Funny because copy-pasting "MySQL Connector/J" into Google got me the source code as the first result.

But if you're looking for source code for a free application, the most convenient way I've found is to look up the related package in Ubuntu (or Debian) and download the related source code.

It works best if you're using them, you can simply use aptitude search / apt-get source combo to download it. But if you're using another operating system, you can simply do a Google search like site:packages.ubuntu.com mysql connector/j

like image 82
Rosh Oxymoron Avatar answered Nov 06 '22 02:11

Rosh Oxymoron


The source code for MySQL Connector/J can be found on GitHub:

https://github.com/mysql/mysql-connector-j

like image 34
rustyx Avatar answered Nov 06 '22 00:11

rustyx