Hello, I wanted to ask something related to the Java AS400 connection driver, that is, JTOpen, and it is about whether it has a URL parameter similar to that of PostgreSQL:
jdbc:postgresql://localhost:5432/db?reWriteBatchedInserts=true
That allows doing SQL inserts like these:
INSERT INTO table (name, value) values ("name1", "value1"), ("name2", "value2"), ("name3", "value3")
instead of doing them like this:
INSERT INTO table (name, value) values ("name1", "value1")
INSERT INTO table (name, value) values ("name2", "value2")
INSERT INTO table (name, value) values ("name3", "value3")
Could someone guide me if it is possible or where I could ask to find out about it?
------------------------------
Roy Martin
------------------------------