源码:(用的eclipse)
package com.renyi.demo;public class JDBCDemo { public static void main(String[] args) throws ClassNotFoundException {
Class.forName("com.mysql.jdbc.Driver");
}}
编译时不出错,执行后报错:
Exception in thread "main" java.lang.Error: Unresolved compilation problem: 
com.mysql.jdbc.Driver cannot be resolved to a variable at com.renyi.demo.JDBCDemo.main(JDBCDemo.java:7)
驱动包我也导入了,