Jdbc Driver Not Found(找不到 Jdbc 驱动程序)
问题描述
我们正在使用 Java 在 netbeans 中开发一个项目,该项目使用 mysql 数据库来处理一些常见查询.但是我在 netbeans 中为 mysql 加载 jdbc 驱动程序时遇到问题.它给出了以下错误:
We are working on a project in netbeans using Java which uses mysql database to process some common queries. But I am having issues with loading jdbc drivers for mysql in netbeans. It is giving following error:
未找到类异常:com.jdbc.mysql.Driver请帮帮我.
Class Not Found Exception : com.jdbc.mysql.Driver please help me out.
推荐答案
您只需将 MySQL JDBC 连接器添加到您的项目中.例如,对于 Oracle 数据库,这将是类似的(您必须添加 ojdbc6.jar).
You just have to add the MySQL JDBC connector to your project. It would be similar for an Oracle database, for example (you would have to add the ojdbc6.jar).
对于 MySQL,您必须获取 MySQL JDBC 连接器并将其添加到项目的类路径中.
For MySQL, you have to get the MySQL JDBC connector and add it to your project's classpath.
- 在 MySQL 站点上获取 MySQL JDBC 连接器,或者通过 Maven 依赖项添加它(如果您的项目由 Maven 驱动),请检查 MySQL 官方网站.截至 2012 年 5 月的当前版本为 5.1.19(适用于任何版本的 MySQL);
- 将其添加到项目属性中的 Netbeans 类路径中.如果需要,请检查有关项目类路径的在线 Netbeans 配置
- Get the MySQL JDBC connector, either on the MySQL site, either adding it through a Maven dependency (if your project is driven by Maven), check the official MySQL site. The current version as of May 2012 is 5.1.19 (works with any version of MySQL);
- Add it to your Netbeans classpath, in the project properties. Check the online Netbeans configuration about project classpath if needed
这篇关于找不到 Jdbc 驱动程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:找不到 Jdbc 驱动程序
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- SQL 临时表问题 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01