<tfoot id='4w734'></tfoot>
      • <bdo id='4w734'></bdo><ul id='4w734'></ul>

      <legend id='4w734'><style id='4w734'><dir id='4w734'><q id='4w734'></q></dir></style></legend>
      <i id='4w734'><tr id='4w734'><dt id='4w734'><q id='4w734'><span id='4w734'><b id='4w734'><form id='4w734'><ins id='4w734'></ins><ul id='4w734'></ul><sub id='4w734'></sub></form><legend id='4w734'></legend><bdo id='4w734'><pre id='4w734'><center id='4w734'></center></pre></bdo></b><th id='4w734'></th></span></q></dt></tr></i><div id='4w734'><tfoot id='4w734'></tfoot><dl id='4w734'><fieldset id='4w734'></fieldset></dl></div>

    1. <small id='4w734'></small><noframes id='4w734'>

      如何使用 Java 创建多个模式连接?

      时间:2023-09-30

          <bdo id='cP6al'></bdo><ul id='cP6al'></ul>
          <i id='cP6al'><tr id='cP6al'><dt id='cP6al'><q id='cP6al'><span id='cP6al'><b id='cP6al'><form id='cP6al'><ins id='cP6al'></ins><ul id='cP6al'></ul><sub id='cP6al'></sub></form><legend id='cP6al'></legend><bdo id='cP6al'><pre id='cP6al'><center id='cP6al'></center></pre></bdo></b><th id='cP6al'></th></span></q></dt></tr></i><div id='cP6al'><tfoot id='cP6al'></tfoot><dl id='cP6al'><fieldset id='cP6al'></fieldset></dl></div>
            <tbody id='cP6al'></tbody>

        • <tfoot id='cP6al'></tfoot>
            <legend id='cP6al'><style id='cP6al'><dir id='cP6al'><q id='cP6al'></q></dir></style></legend>

              <small id='cP6al'></small><noframes id='cP6al'>

                本文介绍了如何使用 Java 创建多个模式连接?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我必须使用两个数据库:

                I have to work with two database:

                1. DB2
                2. 甲骨文

                我在 DB2 数据库中有一个名为 NAVID 的模式.我想使用 Java 为 Oracle 中的所有表创建相同的架构.

                I have a schema in DB2 database named NAVID. I want to create the same schema with all tables in Oracle using Java.

                public class automateExport {
                static String value;
                
                public static void main(String[] args) throws SQLException, ClassNotFoundException {
                    ResultSet rs = null;
                    Connection DB2 = getConnection();
                    String sqlstm = "SELECT * FROM SYSCAT.COLUMNS WHERE TABSCHEMA NOT LIKE 'SYS%'";
                    PreparedStatement mainStmt = DB2.prepareStatement(sqlstm);
                    ResultSet query = mainStmt.executeQuery();        
                }
                
                private static Connection  getConnection() throws ClassNotFoundException, SQLException{
                    Class.forName("com.ibm.db2os390.sqlj.jdbc.DB2SQLJDriver");
                    Connection  connection =
                        DriverManager.getConnection("jdbc:db2://localhost:50000/navid","navid","oracle");
                    return connection;
                 }
                

                我不知道如何选择所有有列的表并在 db2 中创建相同的表.

                I dont know how to select all tables with columns and create the same tables in db2.

                推荐答案

                为了做这样的事情,我邀请你做多种方法;第一种方法必须选择一个表并获取这些值并将它们复制到一个向量中,第二种方法需要一个参数;向量并获取这些值并将它们插入到第二个数据库oracle"中.如果您想了解任何其他信息,请通过我的 gmail 帐户 zahranemehdi@gmail.com 与我联系.

                To make such thing i invite you to make multiple methods; the first method must select a table and get those values and copy them into a vector, and the second method take an argument; the vector and take those values and insert them in the second database 'oracle'. If you would like any other informations contact me in my gmail account zahranemehdi@gmail.com.

                这篇关于如何使用 Java 创建多个模式连接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何修复错误“java.lang.ClassNotFoundException: sun.io 下一篇:跨集群共享 Java 同步块,还是使用全局锁?

                相关文章

                最新文章

                  <tfoot id='eJscu'></tfoot>
                1. <i id='eJscu'><tr id='eJscu'><dt id='eJscu'><q id='eJscu'><span id='eJscu'><b id='eJscu'><form id='eJscu'><ins id='eJscu'></ins><ul id='eJscu'></ul><sub id='eJscu'></sub></form><legend id='eJscu'></legend><bdo id='eJscu'><pre id='eJscu'><center id='eJscu'></center></pre></bdo></b><th id='eJscu'></th></span></q></dt></tr></i><div id='eJscu'><tfoot id='eJscu'></tfoot><dl id='eJscu'><fieldset id='eJscu'></fieldset></dl></div>
                  • <bdo id='eJscu'></bdo><ul id='eJscu'></ul>

                  <small id='eJscu'></small><noframes id='eJscu'>

                  <legend id='eJscu'><style id='eJscu'><dir id='eJscu'><q id='eJscu'></q></dir></style></legend>