List of usage examples for io.vertx.pgclient PgConnectOptions addProperty
@GenIgnore
@Override
public PgConnectOptions addProperty(String key, String value)
From source file:examples.PgClientExamples.java
License:Apache License
public void configureDefaultSchema() { // Data object PgConnectOptions connectOptions = new PgConnectOptions(); // Set the default schema connectOptions.addProperty("search_path", "myschema"); }