其实google搜索一下就会有收获的,下面是我找到的一些链接:http://www.xiaoyao.net/article_detail.aspx?ID=142
http://www.tongyi.net/article/20010322/200103221429.shtml
http://www0.ccidnet.com/tech/web/2001/03/30/58_1911.htmlhttp://macspeed.net/coursejsp/ch09/ch0903.html(unix下)

解决方案 »

  1.   

    MYSQL FOR JDBC DRIVER1、下载mysql for jdbc driver.
       http://www.mysql.com/downloads/download.php?file=Downloads%2FConnector-J%2Fmysql-connector-java-3.0.8-stable.zip&mirror=http%3A%2F%2Fmysql.todayisp.com%2FMySQL Connector/J is distributed as a .zip or .tar.gz archive containing 
    the sources and class files as well as a class-file only "binary" .jar 
    archive named "mysql-connector-java-3.0.7-stable-bin.jar".2、解压缩下载的文件,如:mysql-connector-java-3.0.8-stable.zipYou will need to use the appropriate gui or command-line utility to un-archive 
    the distribution (for example, WinZip for the .zip archive, and "tar" for 
    the .tar.gz archive).3、mysql for jdbc driver有两种安装发式:Once you have un-archived the distribution archive,
    you can install the driver in one of two ways:  第一种方法:将com和org两个目录下所有文件和目录拷贝到任何地方,比如d:\mysqlforjdbc下
                设置classpath=.;d:\mysqlforjdbc;%classpath%Either copy the "com" and "org" subdirectories and all of their contents
    to anywhere you like, and put the directory holding the "com" and "org"
    subdirectories in your classpath, or...  第二种方法:将mysql-connector-java-3.0.7-stable-bin.jar拷贝到一个地方,如:d:\mysqlforjdbc下
                设置classpath=.;d:\mysqlforjdbc\mysql-connector-java-3.0.7-stable-bin.jar;%classpath%     或直接把mysql-connector-java-3.0.7-stable-bin.jar拷贝到%JAVA_HOME%\jre\lib\ext下
        %JAVA_HOME%就是J2SDK的安装目录,如我的为c:\j2sdk就拷贝到c:\j2sdk\jre\lib\ext下Put mysql-connector-java-3.0.7-stable-bin.jar in your classpath, either by adding the 
    FULL path to it to your CLASSPATH enviornment variable, or putting it
    in $JAVA_HOME/jre/lib/ext.
      

  2.   

    -- *.gz 不是LINUX下的格式吗ft.. but he also mentioned windows archieve format -- zipuntil you extract the mysql-connector-java-3.0.8-stable.zip 
    put the jar file into ur classpath (if it is business class
    better put it into the classpath of ur current application
    for easy delivery), you already get the jdbc service.r u going to use jdbc2 ?