List of usage examples for io.vertx.sqlclient Tuple addStringArray
@GenIgnore(GenIgnore.PERMITTED_TYPE)
default Tuple addStringArray(String[] value)
From source file:examples.PgClientExamples.java
License:Apache License
public void arrayExample() { // Create a tuple with a single array Tuple tuple = Tuple.of(new String[] { "a", "tuple", "with", "arrays" }); // Add a string array to the tuple tuple.addStringArray(new String[] { "another", "array" }); // Get the first array of string String[] array = tuple.getStringArray(0); }