如何为 Jetbrains PHPStorm 和 WebStorm 配置 DB Navigator

发布于 2024-12-04 19:01:57 字数 102 浏览 2 评论 0原文

我需要在 Mac(雪豹)中的 PHPStorm 的 DB Navigator 插件中建立连接。它询问我实现 java.sql.Driver 类的库的路径。我只是不知道它在哪里。有什么建议吗?

I need to set up a connection in the DB Navigator plugin for PHPStorm in a mac (snow leopard). It asks me for the route of a library that implements the java.sql.Driver class. I just don't have any idea of where is it. Any advice?

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

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

发布评论

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

评论(6

×纯※雪 2024-12-11 19:01:57

说明

  1. 通过菜单栏>>安装DB Navigator插件设置>>插件>>
    可用选项卡
  2. 从此处下载 MySQL jdbc 连接器>>
    http://www.mysql.com/downloads/connector/j/
  3. 解压MySQL jdbc 连接器连接到您选择的目录
  4. 重新启动 PHPStorm / WebStorm
  5. 通过菜单栏>>添加数据库数据库导航>>设置>>连接选项卡>>加号按钮
  6. 输入连接参数(请参阅下文了解本地 MySQL DB 的可能条目)

本地 MySQL 数据库的可能参数

  • 名称:选择的名称 (localhost)
  • 描述:选择的附加信息 (dbname)
  • 驱动程序库:.jar 文件的路径(即步骤 3 中使用的目录)
  • 驱动程序:首选驱动程序(最有可能)标准驱动程序将执行 >> com.mysql.jdbc.Driver)
  • URL:带有 jdbc 引用的连接 URL(例如:jdbc:mysql://localhost:3306/
  • UserName:db 用户名选择的(root)
  • 密码:选择的数据库密码 (root)

Instructions

  1. Install DB Navigator Plugin via menubar >> Settings >> Plugins >>
    Available-Tab
  2. Download MySQL jdbc connector from here >>
    http://www.mysql.com/downloads/connector/j/
  3. Unpack MySQL jdbc connector to a directory of your choice
  4. Restart PHPStorm / WebStorm
  5. Add a DB via menubar >> DB Navigator >> Settings >> Connection-Tab >> Plus-Button
  6. Enter the parameters for your connection (see below for possible entries for a local MySQL DB)

Possible parameters for a local MySQL DB

  • Name: name of choice (localhost)
  • Description: additional info of choice (dbname)
  • Driver Library: path to the .jar file (that is the directory used in step 3)
  • Driver: preferred driver (most likely the standard driver will do >> com.mysql.jdbc.Driver)
  • URL: connection URL with a jdbc reference (e.g.: jdbc:mysql://localhost:3306/)
  • UserName: db username of choice (root)
  • Password: db password of choice (root)
浅浅淡淡 2024-12-11 19:01:57

只需确保在主机名之前添加 jdbc:mysql:// 即可。这解决了我的问题。

jdbc:mysql://my-db-url.com

Just make sure you added jdbc:mysql:// before hostname. That solved my problem.

jdbc:mysql://my-db-url.com
∞觅青森が 2024-12-11 19:01:57

首先,您不需要安装第三方 DB Navigator 插件,因为 PhpStorm 中的数据库功能是开箱即用的,请参阅工具 | 数据源

添加新的数据源,将允许选择数据库和驱动程序,并自动下载所需的数据库驱动程序。

First of all, you don't need to install third-party DB Navigator plug-in, as database functionality is available in PhpStorm out of the box, see Tools | Data Sources.

Add new data source, it will allow to choose the database and the driver, and will download the required database drivers automatically.

感性不性感 2024-12-11 19:01:57

在此处安装解压的 MySQL Connector J 文件 >
c:\Program Files\MySQL\MySQL Connector J

并且需要我们>
mysql-connector-java-5.1.28-bin.jar

复制到>
c:\Documents and Settings[YOUR_COMP].WebIde70\config\jdbc-drivers\

在 MySQL 数据库连接中选择
驱动>> MySQL>>单击加号并选择

>
c:\Documents and Settings[YOUR_COMP]\.WebIde70\config\jdbc-drivers\mysql-connector-java-5.1.28-bin.jar

还需要数据库支持插件打开! (设置 >> IDE 设置 >> 插件)

ps 实际上适用于 PHPStorm 7

Installed unpacked MySQL Connector J files here >
c:\Program Files\MySQL\MySQL Connector J

And there need to us >
mysql-connector-java-5.1.28-bin.jar

Copy to >
c:\Documents and Settings[YOUR_COMP].WebIde70\config\jdbc-drivers\

In MySQL Database connection choose
Drivers >> MySQL >> click on PLUS and select

>
c:\Documents and Settings[YOUR_COMP]\.WebIde70\config\jdbc-drivers\mysql-connector-java-5.1.28-bin.jar

Also need Database Support plug-in turn ON! (Settings >> IDE Settings >> Plugins)

p.s. Actually for PHPStorm 7

久隐师 2024-12-11 19:01:57

下载 mysql-connector-java-5.1.18-bin.jar 文件并设置该 jar 文件的驱动程序库路径。

然后Intellij idea会自动加载Driver,即com.mysql.jdbc.Driver

然后将 URL 设置为 jdbc:mysql://localhost:3306/

最后输入有效的用户名和密码。

Download mysql-connector-java-5.1.18-bin.jar file and set Driver Library path for that jar file.

Then the Intellij idea will automatically load the Driver which is com.mysql.jdbc.Driver.

Then set URL as jdbc:mysql://localhost:3306/

Finally enter valid user name and a password.

江湖彼岸 2024-12-11 19:01:57

看这张图就清楚了。我希望它可以对你有一点帮助。

  1. 此图片下方有一个驱动程序文件丢失错误,单击此将为您下载所需的驱动程序。

  2. 数据库:您的数据库名称。

  3. 用户:您的数据库用户名和密码。
  4. 然后单击“测试连接”。希望它会给您成功的消息。

输入图片此处描述

Clearly view this picture. I hope it may help you a little bit.

  1. There is a driver files missing error at below of this image, click this it will download required driver for you.

  2. Database: your database name.

  3. User : your database user name and password.
  4. Then click test connection.I hope it will give you successful message.

enter image description here

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