I need help. Could you please answer these question? I would like to connect eclipse to my database and I have tried these in eclipse: Window>Show View>Other>Data Source Explorer. After that we get Database Connections under the eclipse and then right click on the database connection and click on New... then select MySql under Connection Profile Types: and I click on New Driver Definition. Under New Driver Definition dialog, there exists MySql JDBC Driver with specific System Version. I choose one, but the OK button is disabled. Also at the top it says: "Unable to locate JAR/zip in file system as specified by the driver definition: mysql-connector-java-xxx-bin.jar".
How can I specify a Driver Template and Definition Name under New Driver Definition dialog of Data Source Explorer (in Data Tools Platform)
I dont know your Eclipse version or your MySql server version but for
Keplerandmysql 5.5 server, here what I did. First I downloaded mysql connector java jar file(mysql-connector-java-5.1.36-bin.jar) from http://dev.mysql.com/downloads. Then On theNew Driver Definitiondialog page, I chooseMySQL JDBC Driver|MySQL|5.1underName/Typetag. Go toJAR ListtabClear allandAdd JAR/Zip...and choosed my already downloaded jar file. Finally at thePropertiestab I filled them like this:jdbc:mysql://localhost:3306MyDatabaseNameHerecom.mysql.jdbc.DriverMyPasswordHererootIn the end,
OKbutten changed to enabled and that is all.