↧
Answer by RKR for Insert array in HANA with JAVA
This is not a standard code but still works fine.Hope it helps anyone. for (int i = 1; i <= ITERATION_MAX; i++) { String...
View ArticleAnswer by Lars Br. for Insert array in HANA with JAVA
@RKR ok, here you have your example: /* * We're goin to insert several arrays into the HANA table, * with different lengths * * let's assume we already got a table like this * CREATE COLUMN TABLE T3 (...
View ArticleInsert array in HANA with JAVA
I am having an arraylist of objects and trying to insert the list into HANA. So my insert code looks likePreparedStatement stmt = conn .prepareStatement("INSERT INTO SCHEMA.TABLE VALUES"+" (?, ?, ?, ?,...
View Article