通过jdbc将表插入Oracle

发布于 2024-11-07 12:14:11 字数 664 浏览 1 评论 0原文

我从未使用过 JDBC 或 Oracle 做过任何事情,但我已经通过这种方式连接到我的 jdbc:

     String driverName = "oracle.jdbc.driver.OracleDriver";
         Class.forName(driverName);

         // Create a connection to the database
         String serverName = "xxx.xx.xx;
         String portNumber = "1521";
         String sid = "mysid";
         String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber  
                                               + ":" + sid;
         String username = "PGSWLOG";
         String password = "PGDEV";
         connection = DriverManager.getConnection(url, username, password);

现在我需要使用哪些类将表插入数据库?任何帮助将不胜感激。 TIA

I've never done anything with JDBC or much with Oracle, but I've connected to my jdbc this way:

     String driverName = "oracle.jdbc.driver.OracleDriver";
         Class.forName(driverName);

         // Create a connection to the database
         String serverName = "xxx.xx.xx;
         String portNumber = "1521";
         String sid = "mysid";
         String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber  
                                               + ":" + sid;
         String username = "PGSWLOG";
         String password = "PGDEV";
         connection = DriverManager.getConnection(url, username, password);

Now what classes do i need to use to insert tables into the database? Any help would be appreciates. TIA

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

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

发布评论

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

评论(2

忆梦 2024-11-14 12:14:11

当您编写将表插入数据库时,您的意思是

1) 在数据库中创建新表,还是

2) 在现有数据库表中添加新行?

无论哪种情况,请阅读@Marcelo Hernández Ris 发布的教程 然后遵循 JDBC 的好示例http://www.java2s.com/ 上的 Sql92 语法。

When you wrote insert tables into the database, did you mean

1) Create a new table in DB, or

2) Add new row(s) into an existing DB table?

In either case, read the tutorials posted by @Marcelo Hernández Ris and then follow with the good examples for JDBC and Sql92 syntax on http://www.java2s.com/.

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