List:MySQL and Java« Previous MessageNext Message »
From:Geocrawler.com Date:July 5 1999 2:24pm
Subject:mysql error??
View as plain text  
This message was sent from Geocrawler.com by "Shin Hyunil" <coolrock@stripped>
Be sure to reply to that address.

	Hi..
I test a JDBC with mysql(twz1..(ver 1.0.4), jdk1.2(linux)).

My source ::
-------------------------
import java.sql.* ;
        public class test1
        {
            public static void main(String [] argv)
            {
                Connection con ;
                try {
                    Class.forName("twz1.jdbc.mysql.jdbcMysqlDriver");
                    System.out.println("Loading driver.....");
 
                }
                catch(Exception e){System.out.println(e);}
 
                try
                {
                    String url = "jdbc:mysql://202.31.137.227:3306/test";
                    System.out.println("......");
                    con = DriverManager.getConnection(url,"coolrock","odyssey");
 
                    System.out.println("OK") ;
                }
                catch(SQLException e){
                    System.out.println(e.getMessage());              

Result   ::
-------------------------------
Loading driver.....
......
 
E2024 Invoking properties are invalid.
0               


What is this message?
I don't know this..
Help.. me.
Thank you.
		

Geocrawler.com - The Knowledge Archive
Thread
mysql error??Geocrawler.com5 Jul
  • Re: mysql error??Christian Mack16 Jul