驱动类的名字

  1. org.gjt.mm.mysql.Driver和com.mysql.jdbc.Driver的区别

package org.gjt.mm.mysql;

import java.sql.SQLException;

/**
 * Here for backwards compatibility with MM.MySQL
 * 
 * @author Mark Matthews
 */
public class Driver extends com.mysql.jdbc.Driver {
	// ~ Constructors
	// -----------------------------------------------------------

	/**
	 * Creates a new instance of Driver
	 * 
	 * @throws SQLException
	 *             if a database error occurs.
	 */
	public Driver() throws SQLException {
		super();
	}
}



你可能感兴趣的:(驱动类的名字)