RE: mySQL/JDBC/Tomcat4 documentation

2002-02-27 Thread Steve Madonna
to allow permissions for this? -Original Message- From: DingHui [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 6:34 PM To: Tomcat Users List Subject: Re: mySQL/JDBC/Tomcat4 documentation The following code demonstrate how to initilize MYSQL JDBC driver. try { Class.forName

RE: mySQL/JDBC/Tomcat4 documentation

2002-02-27 Thread Brian Owens
that needs to allow permissions for this? -Original Message- From: DingHui [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 6:34 PM To: Tomcat Users List Subject: Re: mySQL/JDBC/Tomcat4 documentation The following code demonstrate how to initilize MYSQL JDBC driver. try

RE: mySQL/JDBC/Tomcat4 documentation

2002-02-27 Thread Filip Hanik
. Is there a config file that needs to allow permissions for this? -Original Message- From: DingHui [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 6:34 PM To: Tomcat Users List Subject: Re: mySQL/JDBC/Tomcat4 documentation The following code demonstrate how to initilize MYSQL JDBC driver

RE: mySQL/JDBC/Tomcat4 documentation

2002-02-27 Thread Steve Madonna
. Is there a config file that needs to allow permissions for this? -Original Message- From: DingHui [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 6:34 PM To: Tomcat Users List Subject: Re: mySQL/JDBC/Tomcat4 documentation The following code demonstrate how to initilize MYSQL JDBC driver

Re: mySQL/JDBC/Tomcat4 documentation

2002-02-27 Thread DingHui
. Is there a config file that needs to allow permissions for this? -Original Message- From: DingHui [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 6:34 PM To: Tomcat Users List Subject: Re: mySQL/JDBC/Tomcat4 documentation The following code demonstrate how

Re: mySQL/JDBC/Tomcat4 documentation

2002-02-27 Thread DingHui
Maybe you put the JDBC Driver in the wrong place. - Original Message - From: Steve Madonna [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Thursday, February 28, 2002 6:18 AM Subject: RE: mySQL/JDBC/Tomcat4 documentation The app seems to throw the same

Re: mySQL/JDBC/Tomcat4 documentation

2002-02-26 Thread
The installation process is very simple.you simply copy the mm.mysql-2.0.4-bin.jar to somewhere in your computer, and add that JAR file into system's CLASSPATH. I think your problem is not caused by CLASSPATH, maybe it's the problem of initilizing the MYSQL JDBC driver. - Original

Re: mySQL/JDBC/Tomcat4 documentation

2002-02-26 Thread DingHui
The following code demonstrate how to initilize MYSQL JDBC driver. try { Class.forName(org.gjt.mm.mysql.Driver); } catch (ClassNotFoundException e) { System.out.println(e); } try { Connection con = DriverManager.getConnection(jdbc:mysql://localhost/mydata, username,