连接mysql时候所需使用的jar包--mysql-connector-java-5.1.38-bin.jar
2022-01-22 13:32:24 908KB mysql  mysql-connec mysql驱动包
1
mysql-connector-java-5.1.37-bin.jar+mysql-connector-java-8.0.12.jar,亲测可用
2022-01-04 23:19:49 9.71MB mysql-connector-
1
mysql数据库驱动,jar文件,下载后添加到用户库中即可。。
2021-12-23 11:06:31 661KB 驱动
1
Driver class 'org.gjt.mm.mysql.Driver' could not be found, make sure the 'MySQL' driver (jar file) is installed. org.gjt.mm.mysql.Driver 缺少的jar包
2021-12-17 14:01:04 1.82MB jar
1
用java代码来连接并操作MySQL数据库. win7 64位操作系统上亲测可用, mysql-connector-java-5.0.8-bin JDK是1.8.0版本,64位的 java 版本:1.8.0,64位
2021-12-17 12:16:51 528KB MySQL 驱动包
1
java连接MySQL数据库使用的驱动包,5.x.版本到6.0之间的MySQL数据适合使用。亲测可用,放心下载。
2021-11-30 08:09:12 674KB mysql
1
hibernate连接mysql驱动包,导入包即可
2021-11-17 20:00:15 446KB hibernate MySQL 驱动包
1
mysql-connector-java-5.1.7-bin.jar
2021-10-20 17:14:34 694KB mysql驱动包
1
mysql5.x可用的 最新mysql-connector-java-5.1.47,亲测可用
2021-09-22 10:21:39 4.43MB mysql驱动包 mysql5.x可用 mysql-connector-
1
Python链接MySQL驱动包,安装之后可以使用Python语言链接MySQL进行数据库操作 # mysqlclient [![Build Status](https://secure.travis-ci.org/PyMySQL/mysqlclient-python.png)](http://travis-ci.org/PyMySQL/mysqlclient-python) This is a fork of [MySQLdb1](https://github.com/farcepest/MySQLdb1). This project adds Python 3 support and bug fixes. I hope this fork is merged back to MySQLdb1 like distribute was merged back to setuptools. ## Install ### Prerequisites You may need to install the Python and MySQL development headers and libraries like so: `sudo apt-get install python-dev libmysqlclient-dev` # Debian / Ubuntu `sudo yum install python-devel mysql-devel` # Red Hat / CentOS On Windows, there are binary wheel you can install without MySQLConnector/C or MSVC. #### Note on Python 3 : if you are using python3 then you need to install python3-dev using the following command : `sudo apt-get install python3-dev` # debian / Ubuntu `sudo yum install python3-devel ` # Red Hat / CentOS `brew install mysql-connector-c` # macOS (Homebrew) ### Install from PyPI `pip install mysqlclient` NOTE: Wheels for Windows may be not released with source package. You should pin version in your `requirements.txt` to avoid trying to install newest source package. ### Install from source 1. Download source by `git clone` or [zipfile](https://github.com/PyMySQL/mysqlclient-python/archive/master.zip). 2. Customize `site.cfg` 3. `python setup.py install` ### Documentation Documentation is hosted on [Read The Docs](https://mysqlclient.readthedocs.io/)
2021-08-21 13:04:38 104KB Python MySQL 驱动 mysqlclient