下面这个程序
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
/*
 * @author janet
 */
public class SimpleApp
{
    /* 缺省的模式是内嵌式的*/
    public String framework = "embedded";
    public String driver = "org.apache.derby.jdbc.EmbeddedDriver";
    public String protocol = "jdbc:derby:";
    public static void main(String[] args)
    {
        new SimpleApp().go(args);
    }
    void go(String[] args)
    {
        /* 处理参数,确定这个程序作为内嵌式使用还是作为客户端使用*/
        parseArguments(args);
        System.out.println("SimpleApp starting in " + framework + " mode.");
        try
        {
            /*
               装载驱动程序,如果是内嵌式模式,这将启动Derby, 因为它还没有运行.
             */
            Class.forName(driver).newInstance();
            System.out.println("Loaded the appropriate driver.");
            Connection conn = null;
            Properties props = new Properties();
            props.put("user", "user1");
            props.put("password", "user1");
            //create=true将创建数据库derbyDB
            conn = DriverManager.getConnection(protocol +"derbyDB;create=true", props);
            System.out.println("Connected to and created database derbyDB");
            conn.setAutoCommit(false);//设置自动提交模式
            Statement s = conn.createStatement();
            /*
               创建一个表,加入几条记录并更新一条.
             */
            s.execute("create table derbyDB(num int, addr varchar(40))");
            System.out.println("Created table derbyDB");
            s.execute("insert into derbyDB values (1956,'Webster St.')");
            System.out.println("Inserted 1956 Webster");
            s.execute("insert into derbyDB values (1910,'Union St.')");
            System.out.println("Inserted 1910 Union");
            s.execute(
                "update derbyDB set num=180, addr='Grand Ave.' where num=1956");
            System.out.println("Updated 1956 Webster to 180 Grand");
            s.execute(
                "update derbyDB set num=300, addr='Lakeshore Ave.' where num=180");
            System.out.println("Updated 180 Grand to 300 Lakeshore");
            /*
               查询并校验结果.
             */
            ResultSet rs = s.executeQuery(
                    "SELECT num, addr FROM derbyDB ORDER BY num");
            if (!rs.next())
            {
                throw new Exception("Wrong number of rows");
            }
            if (rs.getInt(1) != 300)
            {
                throw new Exception("Wrong row returned");
            }
            if (!rs.next())
            {
                throw new Exception("Wrong number of rows");
            }
            if (rs.getInt(1) != 1910)
            {
                throw new Exception("Wrong row returned");
            }
            if (rs.next())
            {
                throw new Exception("Wrong number of rows");
            }
            System.out.println("Verified the rows");
            s.execute("drop table derbyDB");//删除表
            System.out.println("Dropped table derbyDB");
           
            rs.close();
            s.close();
            System.out.println("Closed result set and statement");
            conn.commit();
            conn.close();
            System.out.println("Committed transaction and closed connection");
           
            boolean gotSQLExc = false;
            if (framework.equals("embedded"))
            {
                try
                {
                    DriverManager.getConnection("jdbc:derby:;shutdown=true");//关闭数据库服务
                }
                catch (SQLException se)
                {
                    gotSQLExc = true;
                }
                if (!gotSQLExc)
                {
                    System.out.println("Database did not shut down normally");
                }
                else
                {
                    System.out.println("Database shut down normally");
                }
            }
        }
        catch (Throwable e)
        {
            System.out.println("exception thrown:");
            if (e instanceof SQLException)
            {
                printSQLError((SQLException) e);
            }
            else
            {
                e.printStackTrace();
            }
        }
        System.out.println("SimpleApp finished");
    }
    static void printSQLError(SQLException e)
    {
        while (e != null)
        {
            System.out.println(e.toString());
            e = e.getNextException();
        }
    }
    private void parseArguments(String[] args)
    {
               //  System.setProperty("derby.system.home", "c:\\DBdata");//这样可以设置数据库数据的存放目录        
               int length = args.length;
        for (int index = 0; index < length; index++)
        {
            if (args[index].equalsIgnoreCase("jccjdbcclient"))
            {
                framework = "jccjdbc";
                driver = "com.ibm.db2.jcc.DB2Driver";
                protocol = "jdbc:derby:net://localhost:1527/";
            }
            if (args[index].equalsIgnoreCase("derbyclient"))
            {
                framework = "derbyclient";
                driver = "org.apache.derby.jdbc.ClientDriver";
                protocol = "jdbc:derby://localhost:1527/";
            }
        }
    }
}我运行以后系统说:java.lang.ClassNotFoundException: org.apache.jdbc.EmbeddedDriver
是怎么回事

解决方案 »

  1.   

    还能怎么样就是找不到你的这个驱动呗~把它放lib目录吧~
      

  2.   

    把它放到了sun\lib里面还是一样的结果
      

  3.   

    你是在eclipse里启动的项目吗?
    sun\lib?应该放在jdk\lib吧
      

  4.   

    是在JCreater  放到jdk\lib 也不行。 我的derby.jar 文件是在C:\Program Files\Sun\JavaDB\lib 里面
      

  5.   

    1.把derby.jar加入到你的工程里
    2.或者放到classpath对应的路径
    3.或者将其加入到环境变量中