jdbc 驱动程序“org.gjt.mm.mysql.Driver”是什么?为了?

发布于 2024-11-03 12:51:41 字数 280 浏览 0 评论 0原文

在接手一位同事的项目后,我注意到他使用“org.gjt.mm.mysql.Driver”作为 MySQL 5 的 jdbc 驱动程序,而不是更常见的“com.mysql.jdbc.Driver”。它们都包含在我在 Maven 中心找到的驱动程序中,该驱动程序似乎是驱动程序的标准发行版。

当我查找 gjt.org 时,我发现了一些谈论“Mark's mysql driver”的旧网站。

http://gjt.org/

After taking over a coworker's project I noticed he was using "org.gjt.mm.mysql.Driver" as the jdbc driver for MySQL 5 instead of the more common one "com.mysql.jdbc.Driver". They both are contained in the driver I found on Maven central that appears to be the standard distribution of the driver.

When I look up gjt.org I found some old site that talks about "Mark's mysql driver".

http://gjt.org/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝戈者 2024-11-10 12:51:41

MySQL JDBC 驱动程序最初是由业余爱好者开发的。后来它被捐赠给 MySQL,在那里他们重命名了包/类名。出于向后兼容性的原因,保留旧的类名,但如果可以的话,您应该尽快将其更新为 com.mysql.jdbc.Driver。

The MySQL JDBC driver was initially developed by a hobbyist. It's later donated to MySQL where they renamed the package/classname. The old classname is kept for backwards compatibility reasons, but if you can, you should update it to com.mysql.jdbc.Driver as soon as possible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文