Switch to full style
Java2 codes,problems ,discussions and solutions are here
Post a reply

need help in jdbc with mysql

Tue Dec 16, 2008 12:26 am

hello

I need help to find Mysql driver to connect to data base wih java code
and how to import it in net beans and code fe connection

thanks in advance



Re: need help in jdbc with mysql

Tue Dec 16, 2008 12:48 am

Download the JDBC driver for mysql
http://www.mysql.com/products/connector/j/

Code:
try{
            try {
                Class.forName("org.gjt.mm.mysql.Driver");
            } catch (ClassNotFoundException ex) {
                ex.printStackTrace();
            }


In your netbeans project , you can add a jar file
From projects --> Add jar file
Attachments
untitled.GIF
untitled.GIF (5.31 KiB) Viewed 5616 times

Post a reply
  Related Posts  to : need help in jdbc with mysql
 JDBC     -  
 What is JDBC?!!!     -  
 JDBC Table Model example     -  
 good books of jsp and jdbc     -  
 Best Books for Servlet and JDBC     -  
 What are the types of jdbc drivers.?     -  
 Connecting to SQLServer 2000 using JDBC     -  
 need help in mysql     -  
 connect to MYSQL from ASP     -  
 How to Connect to MySql Server     -  

Topic Tags

Java JDBC