我使用NetBeans IDE在Java中创建了名为emb4的数据库,其中包含一个表,我正在尝试使用嵌入式数据库创建应用程序。我创建了我的嵌入式驱动程序,我正在使用此代码:
> /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package embededbaza4;
>
> import java.sql.Connection; import java.sql.DriverManager; import
> java.sql.ResultSet; import java.sql.Statement;
>
>
> /** * * @author Admin */ public class EmbededBaza4 {
>
>
> private static final String driver = "org.apache.derby.jdbc.EmbeddedDriver";
>
> /**
> * @param args the command line arguments
> */
> public static void main(String[] args) {
> // TODO code application logic here
>
> try
> {
> Class.forName(driver).newInstance();
> Connection conn = null;
> conn = DriverManager.getConnection("jdbc:derby:emb4;create=true");
>
> Statement st = conn.createStatement();
> String sql = "SELECT * FROM TEKSTOVI";
> ResultSet setRezultata = st.executeQuery(sql);
>
> while(setRezultata.next())
> {
> System.out.println(setRezultata.getString("txt"));
> }
>
>
> }
> catch(Exception exc)
> {
> System.err.println("Unable to load the embedded driver.");
> exc.printStackTrace(System.err);
> System.exit(0);
> }
> } }
但它不会连接到我创建的数据库,而是创建一个新的数据库而且没有我创建的表。我该如何解决这个问题?
答案 0 :(得分:0)
尝试在连接URL中使用数据库的绝对路径。例如。 JDBC:德比:/路径/到/ emb4