Ryu Sasai

Results 7 comments of Ryu Sasai

INSERT INTO table ("name","age") VALUES (?,?),(?,?),(?,?) works with mysql but not HANA, which does not support multiple row insert. Would it be possible for you to implement batch support, please?...

Yes, that's been perfectly working with mysql. I am porting code for HANA, and HANA does not support multiple row insert, therefore, HANA driver complains when it parses VALUES (?,?),(?,?)...

It will end up with the same functionality. The thing is, I cannot insert multiple rows with one query into HANA. At the moment the only solution that they suggest...

That should be fine because each iteration inserts only one row. So, when you do ``` { action: "insert", stmt: "INSERT INTO xxx( a, b ) VALUES( ?, ? )",...

The mod is working perfectly with HANA with multiple row insert. My sql was wrong. Thank you very much. Although, I still think that it would be better if the...

Hi I found out the following: - If it's a 'legitimate error' like 'unique constraint violated' then the connection is returned to the pool. - If it's a 'stupid error'...

Thank you for your quick reply. It's good that there's a workaround. However, it seems that quite a few people have written a lot of sql already and are having...