i need to set up a conection 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 torch?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Crazy Coder is right - you can use the build-in feature for at least some of the plugins functionality. Anyway, here are the steps to set the navigator up if you decide to go with the plugin option:

Instructions:

  • Install DB Navigator Plugin via >> Settings >> Plugins >> Available-Tab
  • Download MySQL jdbc connector from here >> http://www.mysql.com/downloads/connector/j/
  • Unpack MySQL jdbc connector to a directory of your choice
  • Add a DB connection via DB Navigator >> Settings >> Connection-Tab >> Plus-Button
  • Use the following parameters for your local MySQL DB (see below)

Parameters for local MySQL DB:

  • Name: some name of choice (localhost)
  • Description: some additional info of choice (dbname)
  • Driver Library: path to the .jar file (which should be within the directory to which you unpacked the archive in step 3)
  • Driver: your perfered driver (most likely the standard driver will do >> com.mysql.jdbc.Driver)
  • URL: connection URL with a jdbc reference (in my current XAMP setup this worked out fine >> jdbc:mysql://localhost:3306/)
  • UserName: the db username (root)
  • Password: the db password (root)
link|improve this answer
brillian, thank you! – Rimbuaj Sep 27 '11 at 15:55
sure thing, you are welcome! – Bruiser Sep 27 '11 at 20:13
feedback

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.

link|improve this answer
Thank you i found it and although i don't see the databases to explore at least i made the conection. Thank you again, i'll take a look. – Rimbuaj Sep 19 '11 at 10:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.