简体   繁体   中英

JDBC Connection and testing error

I tried to run this code but it gave me numerous errors, and How do I know my Own

 import javax.swing.JOptionPane;
import java.sql.*;
public class JdbcConnection{

    static String userid="root", password = "123192";
    static String url = "jdbc:mysql://localhost:3306/Testdb";   // String url = "jdbc:mySubprotocol:myDataSource"; ?
    static Statement stmt;
    static Connection con;
    public static void main(String args[]){

        JOptionPane.showMessageDialog(null,"JDBC Programming showing Creation of Table's");
        int choice = -1;

        do{
            choice = getChoice();
            if (choice != 0){
                getSelected(choice);
            }
        }
        while ( choice !=  0);
            System.exit(0);
    }

    public static int getChoice()
    {
        String choice;
        int ch;
        choice = JOptionPane.showInputDialog(null,
            "1. Create Employees Table\n"+
            "2. Create Products Table\n"+
            "0. Exit\n\n"+
            "Enter your choice");
        ch = Integer.parseInt(choice);
        return ch;

    }

    public static void getSelected(int choice){
        if(choice==1){
            createEmployees();
        }
        if(choice==2){
            createOrders();
        }
    }

    public static Connection getConnection()
    {



        try {
            Class.forName("com.mysql.jdbc.Driver"); //Class.forName("myDriver.ClassName"); ?

        } catch(java.lang.ClassNotFoundException e) {
            System.err.print("ClassNotFoundException: ");
            System.err.println(e.getMessage());
        }

        try {
            con = DriverManager.getConnection(url,
                                     userid, password);

        } catch(SQLException ex) {
            System.err.println("SQLException: " + ex.getMessage());
        }

        return con;
    }

    /*CREATE TABLE Employees (
            Employee_ID INTEGER,
            Name VARCHAR(30)
        );*/
    public static void createEmployees()
    {
        Connection con = getConnection();

        String createString;
        createString = "create table Employees (" +
                            "Employee_ID INTEGER, " +
                            "Name VARCHAR(30))";
        try {
            stmt = con.createStatement();
            stmt.executeUpdate(createString);
            stmt.close();
            con.close();

        } catch(SQLException ex) {
            System.err.println("SQLException: " + ex.getMessage());
        }
        JOptionPane.showMessageDialog(null,"Employees Table Created");
    }

    /*CREATE TABLE Orders (
            Prod_ID INTEGER,
            ProductName VARCHAR(20),
            Employee_ID INTEGER
        );*/

    public static void createOrders()
    {
        Connection con = getConnection();

        String createString;
        createString = "create table Orders (" +
                            "Prod_ID INTEGER, " +
                            "ProductName VARCHAR(20), "+
                            "Employee_ID INTEGER )";


        try {
            stmt = con.createStatement();
            stmt.executeUpdate(createString);

            stmt.close();
            con.close();

        } catch(SQLException ex) {
            System.err.println("SQLException: " + ex.getMessage());
        }
        JOptionPane.showMessageDialog(null,"Orders Table Created");
    }


}//End of class

and I had this error

when I ran this program and I selected option number 1 it gave me this error

ClassNotFoundException: jdbc:mysql://localhost:3306/
SQLException: No database selected

after I click ok it gave me this error

I am using MySQL, I've downloaded my connector/j and I've set it's classpath, h

C:\Program Files\Java\jdk1.6.0_24\bin;C:\Program Files\Java\jre6\lib\ext

Any help? and how do I set the default driver in eclipse helios? EDIT:

I updated the my codee my problem now is this

Exception in thread "main" java.lang.NumberFormatException: null
    at java.lang.Integer.parseInt(Unknown Source)
    at java.lang.Integer.parseInt(Unknown Source)
    at JdbcConnection.getChoice(JdbcConnection.java:33)
    at JdbcConnection.main(JdbcConnection.java:15)

This:

Class.forName("jdbc:mysql://localhost:3306/");

is wrong. Like your source-code comment suggested it needs to be:

Class.forName("myDriver.ClassName");

And using mysql it probably is:

Class.forName("com.mysql.jdbc.Driver");

Your url is used to create a connection with:

con = DriverManager.getConnection(url, userid, password);

Class.forName loads a driver class. It is not responsible for making the connection.

By the way: You get two errors, because you don't exit your method on the ClassNotFoundError , which is quite a heave error and your method should not be allowed to execute further.
Therefore your program will execute further and throw the second error.

Class.forName is for loading the driver class

it should be something like this

Class.forName("com.mysql.jdbc.Driver");  

and your url should be like this

url ="jdbc:mysql://localhost:3306/yourDataBaseName"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM