@Documented @Retention(value=RUNTIME) @Target(value=TYPE) public @interface Schema
If the schema name is not static you can use something like this:
ProcedureCallerFactory.of(MyProcedures.class, dataSource)
.withSchemaNamingStrategy(ignored -> computeSchemaName())
.build();
For PL/SQL packages or DB2 modules Namespace
should be
used.
public abstract String value
Copyright © 2016–2017. All rights reserved.