Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is my java code for jdbc connectivity:

import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;

public class dbtest
{
    public static void main(String args[])throws ClassNotFoundException,SQLException
    {
        String host = "127.0.0.1.mysql.com";
        String dbName = "emp";
        int port = 3306;
        String URL = "jdbc:mysql://127.0.0.1/emp";


        try
        {
            Class.forName("jdbc:mysql://127.0.0.1/emp");           
        }
        catch (ClassNotFoundException cnfe) {
            System.out.println("Error loading driver: ");
        }


        String password = "pavilion";
        Connection connection =DriverManager.getConnection(URL,username,password);
        DatabaseMetaData dbMetaData =connection.getMetaData();
        String productName =dbMetaData.getDatabaseProductName();
        System.out.println("Database: " + productName);

        productVersion =dbMetaData.getDatabaseProductVersion();
        System.out.println("Version: " + productVersion);
        Statement statement = connection.createStatement();
        String query ="SELECT * FROM emp";
        ResultSet resultSet = statement.executeQuery(query);

        while(resultSet.next())
        {
            System.out.println(resultSet.getString(1) + " " +resultSet.getString(2));
        }
        connection.close();
    } 
}

Errors:

Error loading driver:  
 Exception in thread "main" java.sql.SQLException: No suitable driver found 
  forjdbc:mysql://127.0.0.1/emp
at java.sql.DriverManager.getConnection(DriverManager.java:640)
at java.sql.DriverManager.getConnection(DriverManager.java:200)
at dbtest.main(dbtest.java:40)
share|improve this question

1 Answer

instead of this

Class.forName("jdbc:mysql://127.0.0.1/emp");   

do this

Class.forName("com.mysql.jdbc.Driver");
share|improve this answer
Exception in thread "main" java.sql.SQLException: No suitable driver found for com.mysql.jdbc.Driver – vinay Aug 29 '11 at 18:28
this is giving Exception in thread "main" java.sql.SQLException: No suitable driver found for com.mysql.jdbc.Driver – vinay Aug 29 '11 at 18:31
1  
You'll need the mysql driver .jar file in the classpath of your program. – bpgergo Aug 29 '11 at 18:38
pls tell me process – vinay Aug 29 '11 at 18:39
CLASSPATH=$CLASSPATH:/usr/share/java/mysql.jar export CLASSPATH CLASSPATH=".:/usr/share/java/mysql.jar" – vinay Aug 29 '11 at 18:40
show 8 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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