Kurva
01-28-2001, 10:38 PM
(on alabanza servers)Are there JDBC drivers for mysql loaded anywhere on the server? I'd like to access the mysql db using servlets and JDBC.
![]() | View Full Version : JDBC Kurva 01-28-2001, 10:38 PM (on alabanza servers)Are there JDBC drivers for mysql loaded anywhere on the server? I'd like to access the mysql db using servlets and JDBC. MattF 01-29-2001, 05:05 AM Just go to: http://www.caucho.com/projects/jdbc-mysql/ Download the driver and dump it in your java lib directory /usr/local/jdk1.2/lib or whatever the directory is on your server. Then any user with JSP/Servlet permission can load the driver. Class.forname("com.caucho.jdbc.mysql.Driver"); (double check syntax); |