如何在java中使用derby在想要的位置设置想要的数据库

发布于 2024-11-05 06:05:43 字数 649 浏览 1 评论 0原文

我想在java中以编程方式在想要的位置构建想要的数据库。

    public class DerbyCreateTable {
 public static void main(String [] args) {
Connection con = null;
try {
  con = DriverManager.getConnection(
    "jdbc:derby://localhost/TestDB");

 // Creating a database table
  Statement sta = con.createStatement(); 
  int count = sta.executeUpdate(
    "CREATE TABLE HY_Address (ID INT, StreetName VARCHAR(20),"
    + " City VARCHAR(20))");
  System.out.println("Table created.");
  sta.close();        

  con.close();        
} catch (Exception e) {
  System.err.println("Exception: "+e.getMessage());
}
}
}

但我如何设置创建它的位置以及如何创建我想要的新位置? 谢谢

I want to build wanted db in wanted location programly in java.

    public class DerbyCreateTable {
 public static void main(String [] args) {
Connection con = null;
try {
  con = DriverManager.getConnection(
    "jdbc:derby://localhost/TestDB");

 // Creating a database table
  Statement sta = con.createStatement(); 
  int count = sta.executeUpdate(
    "CREATE TABLE HY_Address (ID INT, StreetName VARCHAR(20),"
    + " City VARCHAR(20))");
  System.out.println("Table created.");
  sta.close();        

  con.close();        
} catch (Exception e) {
  System.err.println("Exception: "+e.getMessage());
}
}
}

but how can I set up where to create it and how to creat the new location that I want ?
thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可遇━不可求 2024-11-12 06:05:43

你快到了。首先,您需要加载驱动程序,例如;

private static String embeddedDriver = "org.apache.derby.jdbc.EmbeddedDriver";

然后在你的主要部分;

Class.forName(embeddedDriver).newInstance();

其次,您需要使用这样的 URL 来指定文件系统上的位置;

jdbc:derby:/dir/to/create/database;create=true

You are almost there. First you need to load the driver, for example;

private static String embeddedDriver = "org.apache.derby.jdbc.EmbeddedDriver";

then in your main;

Class.forName(embeddedDriver).newInstance();

Second you need to use a URL like this to specify a location on the file system;

jdbc:derby:/dir/to/create/database;create=true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文