Results 1 to 3 of 3
- 01-05-2010, 03:18 AM #1
Member
- Join Date
- Oct 2009
- Posts
- 4
- Rep Power
- 0
eclipse database plugin problem(urgent plz)
HI everyone:
My problem with eclipse and plugins needed to design and create database
first I use eclipse v-3.5.1
download :
mysql-connector-java-5.1.10
emf-sdo-xsd-SDK-2.4.2.zip
GEF-ALL-3.5.1.zip
dtp-sdk_1.7.0.zip
there's no Database Development perspective in my eclipse ????
I do these steps but that doesn't help
in data source explorer :
r-click on Database connections >> new ... >>> Generic JDBC then next and
when try to add new driver definition it show in Name\Type tab
Database and under it Generic JDBC diver and when I try the Jar list tab to add mysql connector it doesn't work
WHAT'S THE PROBLEM ???????????
pleasssssssssssssssssssse hellllllllllllllllp me :
whats requirments needed to make my first db in eclipse
- 02-10-2010, 09:37 AM #2
Here is the code i generally use for a connection to mysql-db.
You have to add your mysql-connector-java-version.jar as external jar in order that eclipse can find the driver. you will find an indroduction to database connection Java Tutorials - Java Forums good luck.Java Code:if (connection == null) { try { Class.forName("com.mysql.jdbc.Driver"); } catch (ClassNotFoundException e) { System.out.println("Couldn't find the driver!"); e.printStackTrace(); System.exit(1); } try { connection = DriverManager.getConnection( "jdbc:mysql://localhost:yourPortNumber/mydb", Parameter.userID , Parameter.password); } catch (Throwable e) { System.out.println("Couldn't get connection to localhost!"); e.printStackTrace(); System.exit(1); } }
- 04-02-2010, 01:54 PM #3
Member
- Join Date
- Apr 2010
- Posts
- 51
- Rep Power
- 0
Similar Threads
-
Eclipse plugin problem
By javarooster in forum EclipseReplies: 2Last Post: 12-17-2009, 02:45 AM -
Maven plugin for eclipse + "Updating Maven Dependencies" problem??
By sbutt in forum EclipseReplies: 0Last Post: 04-20-2009, 06:26 PM -
Problem of Classloader in Eclipse Plugin Developemt.
By Ashish Naidu in forum EclipseReplies: 0Last Post: 09-12-2008, 10:16 AM -
AnyEdit Plugin For Eclipse Plugin
By JavaForums in forum EclipseReplies: 0Last Post: 05-18-2007, 12:28 PM -
plugin for eclipse
By sin in forum EclipseReplies: 1Last Post: 05-10-2007, 07:43 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks