Answers for "caused by: java.sql.sqlexception: no database selected"

0

caused by: java.sql.sqlexception: no database selected

import java.sql.*;
    public class test
    {
        public static void main(String[] args)
        {
            try
            {
              Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
              System.out.println("driver loaded...");
            }
            catch(ClassNotFoundException e){
              System.out.println("Error in loading the driver..."+e);
              System.exit(0);
            }
            try
            {
                Connection dbConnection= DriverManager.getConnection("jdbc:odbc:test","root","password");
                System.out.println("Connection successful...");
                Statement stmt = dbConntection.createStatement();
                stmt.executeUpdate("create table Accounts ( name char(20) )");
             }
             catch(SQLException e)
             {
                  System.out.println("database-ConnectionError: "+e);
                  System.exit(0);
             }   
        }
    }
Posted by: Guest on February-10-2022

Code answers related to "caused by: java.sql.sqlexception: no database selected"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language