向 HANA 数据库中插入数组列表


尝试使用以下代码

示例

Integer[][] myarray ={ {1}, {1,2}, {1,2,3,4,5} };
   String test = "Insert Arrays";
   stopWatch.start(test);
   myDBconn.setAutoCommit(false);
   Statement stmt = myDBconn.createStatement();
   stmt = myDBconn.createStatement();
   stmt.execute("TRUNCATE TABLE Schema.Table1");
   // Running a loop over our array of arrays
   for (int i = 0 ; i < (myarray.length); i++) {
      int curr_length = myarray[i].length;
      String arrayFunction = "ARRAY (";
      for (int j = 0; j < (curr_length); j++){
         arrayFunction = arrayFunction.concat(myarr[i][j].toString()) ;
         // add comma if this is not the last element
         if (j < (curr_length - 1)){
            arrayFunction = arrayFunction.concat(", ") ;
         }
      }
     arrayFunction = arrayFunction + ")" ;
     // You can see arrayFunction as it look like below
     // ARRAY ( ..., .... ,... )
     String insCMD = "INSERT INTO Table1 (id, Value) "
        + " VALUES (" + i + ", "
        + arrayFunction
        + " ) ";
     System.out.println(insCMD);
     int affectedRows = stmt.executeUpdate(insCMD);
     System.out.println("Loop round " + i
        + ", last affected row count " + affectedRows);
     }
     myDBconn.commit();
     stmt.close();
     stmt = null;

输出

当我运行 Select 语句时,上述程序的输出

ID Value
0 1
1 1, 2
2 1, 2, 3, 4, 5

更新于: 17-Dec-2019

359 次浏览

启动您的 职业

通过完成课程获得认证

开始
广告