How do you create $listbuild using java native api?
Is there a way to make listbuild from java?
Something like:
IRIS iris = IRIS.createIRIS(conn);
byte[] value={1,2,3,4}
iris.set(value,"^testglobal");
but this creates set ^testglobal = $c(1,2,3,4).
Product version: IRIS 2021.2
Internally it should support listbuilds, but not sure if it exposes this ability to public
Use the IRISList class:
USER>zw ^test
^test(1)=$lb("this is a string",100)
Thanks @Dan Pasco , this was exactly what I was looking for!