[#625] Remove dependency from generated Routines to the generator's SQLDialect
This commit is contained in:
parent
5f00b0eb26
commit
d26df720d0
@ -61,7 +61,6 @@ import org.jooq.MasterDataType;
|
||||
import org.jooq.Parameter;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Result;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Sequence;
|
||||
import org.jooq.Table;
|
||||
@ -1732,10 +1731,7 @@ public class DefaultGenerator implements Generator {
|
||||
printJavadoc(out, "Create a new routine call instance");
|
||||
out.println("\tpublic " + strategy.getJavaClassName(routine) + "() {");
|
||||
out.print("\t\tsuper(");
|
||||
out.print(SQLDialect.class);
|
||||
out.print(".");
|
||||
out.print(database.getDialect().name());
|
||||
out.print(", \"");
|
||||
out.print("\"");
|
||||
out.print(routine.getName());
|
||||
out.print("\", ");
|
||||
out.print(strategy.getFullJavaIdentifier(schema));
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
*/
|
||||
public class FilmInStock extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -2101392470;
|
||||
private static final long serialVersionUID = -1398821343;
|
||||
|
||||
|
||||
/**
|
||||
@ -30,7 +30,7 @@ public class FilmInStock extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FilmInStock() {
|
||||
super(org.jooq.SQLDialect.MYSQL, "film_in_stock", org.jooq.examples.mysql.sakila.Sakila.SAKILA);
|
||||
super("film_in_stock", org.jooq.examples.mysql.sakila.Sakila.SAKILA);
|
||||
|
||||
addInParameter(P_FILM_ID);
|
||||
addInParameter(P_STORE_ID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
*/
|
||||
public class FilmNotInStock extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 1665410204;
|
||||
private static final long serialVersionUID = 136011591;
|
||||
|
||||
|
||||
/**
|
||||
@ -30,7 +30,7 @@ public class FilmNotInStock extends org.jooq.impl.AbstractRoutine<java.lang.Void
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FilmNotInStock() {
|
||||
super(org.jooq.SQLDialect.MYSQL, "film_not_in_stock", org.jooq.examples.mysql.sakila.Sakila.SAKILA);
|
||||
super("film_not_in_stock", org.jooq.examples.mysql.sakila.Sakila.SAKILA);
|
||||
|
||||
addInParameter(P_FILM_ID);
|
||||
addInParameter(P_STORE_ID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
*/
|
||||
public class GetCustomerBalance extends org.jooq.impl.AbstractRoutine<java.math.BigDecimal> {
|
||||
|
||||
private static final long serialVersionUID = 1238363717;
|
||||
private static final long serialVersionUID = 1079769348;
|
||||
|
||||
|
||||
/**
|
||||
@ -30,7 +30,7 @@ public class GetCustomerBalance extends org.jooq.impl.AbstractRoutine<java.math.
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public GetCustomerBalance() {
|
||||
super(org.jooq.SQLDialect.MYSQL, "get_customer_balance", org.jooq.examples.mysql.sakila.Sakila.SAKILA, org.jooq.impl.SQLDataType.DECIMAL);
|
||||
super("get_customer_balance", org.jooq.examples.mysql.sakila.Sakila.SAKILA, org.jooq.impl.SQLDataType.DECIMAL);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P_CUSTOMER_ID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
*/
|
||||
public class InventoryHeldByCustomer extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -1179829565;
|
||||
private static final long serialVersionUID = -1873033922;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class InventoryHeldByCustomer extends org.jooq.impl.AbstractRoutine<java.
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public InventoryHeldByCustomer() {
|
||||
super(org.jooq.SQLDialect.MYSQL, "inventory_held_by_customer", org.jooq.examples.mysql.sakila.Sakila.SAKILA, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("inventory_held_by_customer", org.jooq.examples.mysql.sakila.Sakila.SAKILA, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P_INVENTORY_ID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
*/
|
||||
public class InventoryInStock extends org.jooq.impl.AbstractRoutine<java.lang.Byte> {
|
||||
|
||||
private static final long serialVersionUID = -407588345;
|
||||
private static final long serialVersionUID = -924685636;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class InventoryInStock extends org.jooq.impl.AbstractRoutine<java.lang.By
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public InventoryInStock() {
|
||||
super(org.jooq.SQLDialect.MYSQL, "inventory_in_stock", org.jooq.examples.mysql.sakila.Sakila.SAKILA, org.jooq.impl.SQLDataType.TINYINT);
|
||||
super("inventory_in_stock", org.jooq.examples.mysql.sakila.Sakila.SAKILA, org.jooq.impl.SQLDataType.TINYINT);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P_INVENTORY_ID);
|
||||
|
||||
@ -10,7 +10,7 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
*/
|
||||
public class RewardsReport extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -104106522;
|
||||
private static final long serialVersionUID = 1300386401;
|
||||
|
||||
|
||||
/**
|
||||
@ -32,7 +32,7 @@ public class RewardsReport extends org.jooq.impl.AbstractRoutine<java.lang.Void>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public RewardsReport() {
|
||||
super(org.jooq.SQLDialect.MYSQL, "rewards_report", org.jooq.examples.mysql.sakila.Sakila.SAKILA);
|
||||
super("rewards_report", org.jooq.examples.mysql.sakila.Sakila.SAKILA);
|
||||
|
||||
addInParameter(MIN_MONTHLY_PURCHASES);
|
||||
addInParameter(MIN_DOLLAR_AMOUNT_PURCHASED);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class BuildPlanXml extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = 841625147;
|
||||
private static final long serialVersionUID = -924109584;
|
||||
|
||||
|
||||
/**
|
||||
@ -58,7 +58,7 @@ public class BuildPlanXml extends org.jooq.impl.AbstractRoutine<java.lang.Object
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public BuildPlanXml() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "BUILD_PLAN_XML", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.util.oracle.OracleDataType.getDefaultDataType("UNDEFINED"));
|
||||
super("BUILD_PLAN_XML", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.util.oracle.OracleDataType.getDefaultDataType("UNDEFINED"));
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(TABLE_NAME);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class DiffPlan extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -26015612;
|
||||
private static final long serialVersionUID = 1629200505;
|
||||
|
||||
|
||||
/**
|
||||
@ -35,7 +35,7 @@ public class DiffPlan extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public DiffPlan() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DIFF_PLAN", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("DIFF_PLAN", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(SQL_TEXT);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class DiffPlanAwr extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 1476319517;
|
||||
private static final long serialVersionUID = -990539502;
|
||||
|
||||
|
||||
/**
|
||||
@ -35,7 +35,7 @@ public class DiffPlanAwr extends org.jooq.impl.AbstractRoutine<java.lang.String>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public DiffPlanAwr() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DIFF_PLAN_AWR", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("DIFF_PLAN_AWR", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(SQL_ID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class DiffPlanCursor extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 1324457595;
|
||||
private static final long serialVersionUID = 1728883494;
|
||||
|
||||
|
||||
/**
|
||||
@ -35,7 +35,7 @@ public class DiffPlanCursor extends org.jooq.impl.AbstractRoutine<java.lang.Stri
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public DiffPlanCursor() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DIFF_PLAN_CURSOR", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("DIFF_PLAN_CURSOR", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(SQL_ID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class DiffPlanOutline extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -1261440657;
|
||||
private static final long serialVersionUID = 593228708;
|
||||
|
||||
|
||||
/**
|
||||
@ -40,7 +40,7 @@ public class DiffPlanOutline extends org.jooq.impl.AbstractRoutine<java.lang.Str
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public DiffPlanOutline() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DIFF_PLAN_OUTLINE", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("DIFF_PLAN_OUTLINE", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(SQL_TEXT);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class DiffPlanSqlBaseline extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 1313887923;
|
||||
private static final long serialVersionUID = -454362456;
|
||||
|
||||
|
||||
/**
|
||||
@ -30,7 +30,7 @@ public class DiffPlanSqlBaseline extends org.jooq.impl.AbstractRoutine<java.lang
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public DiffPlanSqlBaseline() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DIFF_PLAN_SQL_BASELINE", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("DIFF_PLAN_SQL_BASELINE", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(BASELINE_PLAN_NAME1);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class Display extends org.jooq.impl.AbstractRoutine<org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1631181207;
|
||||
private static final long serialVersionUID = 303823828;
|
||||
|
||||
|
||||
/**
|
||||
@ -40,7 +40,7 @@ public class Display extends org.jooq.impl.AbstractRoutine<org.jooq.examples.ora
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Display() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DISPLAY", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
super("DISPLAY", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(TABLE_NAME);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class DisplayAwr extends org.jooq.impl.AbstractRoutine<org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2009883404;
|
||||
private static final long serialVersionUID = 1351358879;
|
||||
|
||||
|
||||
/**
|
||||
@ -40,7 +40,7 @@ public class DisplayAwr extends org.jooq.impl.AbstractRoutine<org.jooq.examples.
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public DisplayAwr() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DISPLAY_AWR", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
super("DISPLAY_AWR", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(SQL_ID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class DisplayCursor extends org.jooq.impl.AbstractRoutine<org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = -520700923;
|
||||
private static final long serialVersionUID = 725735674;
|
||||
|
||||
|
||||
/**
|
||||
@ -35,7 +35,7 @@ public class DisplayCursor extends org.jooq.impl.AbstractRoutine<org.jooq.exampl
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public DisplayCursor() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DISPLAY_CURSOR", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
super("DISPLAY_CURSOR", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(SQL_ID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class DisplayPlan extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -850892877;
|
||||
private static final long serialVersionUID = -305042904;
|
||||
|
||||
|
||||
/**
|
||||
@ -45,7 +45,7 @@ public class DisplayPlan extends org.jooq.impl.AbstractRoutine<java.lang.String>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public DisplayPlan() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DISPLAY_PLAN", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.CLOB);
|
||||
super("DISPLAY_PLAN", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.CLOB);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(TABLE_NAME);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class DisplaySqlPlanBaseline extends org.jooq.impl.AbstractRoutine<org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1736754896;
|
||||
private static final long serialVersionUID = -973826501;
|
||||
|
||||
|
||||
/**
|
||||
@ -35,7 +35,7 @@ public class DisplaySqlPlanBaseline extends org.jooq.impl.AbstractRoutine<org.jo
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public DisplaySqlPlanBaseline() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DISPLAY_SQL_PLAN_BASELINE", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
super("DISPLAY_SQL_PLAN_BASELINE", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(SQL_HANDLE);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class DisplaySqlset extends org.jooq.impl.AbstractRoutine<org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = 463536992;
|
||||
private static final long serialVersionUID = 544915531;
|
||||
|
||||
|
||||
/**
|
||||
@ -45,7 +45,7 @@ public class DisplaySqlset extends org.jooq.impl.AbstractRoutine<org.jooq.exampl
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public DisplaySqlset() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "DISPLAY_SQLSET", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
super("DISPLAY_SQLSET", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(SQLSET_NAME);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class FormatNumber extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -499679878;
|
||||
private static final long serialVersionUID = -1315978139;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class FormatNumber extends org.jooq.impl.AbstractRoutine<java.lang.String
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FormatNumber() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "FORMAT_NUMBER", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("FORMAT_NUMBER", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(NUM);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class FormatNumber2 extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -859904286;
|
||||
private static final long serialVersionUID = 860763735;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class FormatNumber2 extends org.jooq.impl.AbstractRoutine<java.lang.Strin
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FormatNumber2() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "FORMAT_NUMBER2", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("FORMAT_NUMBER2", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(NUM);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class FormatSize extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 649815234;
|
||||
private static final long serialVersionUID = 354110061;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class FormatSize extends org.jooq.impl.AbstractRoutine<java.lang.String>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FormatSize() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "FORMAT_SIZE", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("FORMAT_SIZE", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(NUM);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class FormatSize2 extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -1290109430;
|
||||
private static final long serialVersionUID = -977301825;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class FormatSize2 extends org.jooq.impl.AbstractRoutine<java.lang.String>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FormatSize2() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "FORMAT_SIZE2", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("FORMAT_SIZE2", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(NUM);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class FormatTimeS extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -457187586;
|
||||
private static final long serialVersionUID = 2039736297;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class FormatTimeS extends org.jooq.impl.AbstractRoutine<java.lang.String>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FormatTimeS() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "FORMAT_TIME_S", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("FORMAT_TIME_S", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(NUM);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class GetPlandiffReportXml extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = -664101623;
|
||||
private static final long serialVersionUID = 169611380;
|
||||
|
||||
|
||||
/**
|
||||
@ -38,7 +38,7 @@ public class GetPlandiffReportXml extends org.jooq.impl.AbstractRoutine<java.lan
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public GetPlandiffReportXml() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "GET_PLANDIFF_REPORT_XML", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.util.oracle.OracleDataType.getDefaultDataType("UNDEFINED"));
|
||||
super("GET_PLANDIFF_REPORT_XML", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.util.oracle.OracleDataType.getDefaultDataType("UNDEFINED"));
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(REPORT_REF);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class PreparePlanXmlQuery extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -1897106572;
|
||||
private static final long serialVersionUID = -1208991009;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class PreparePlanXmlQuery extends org.jooq.impl.AbstractRoutine<java.lang
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public PreparePlanXmlQuery() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "PREPARE_PLAN_XML_QUERY", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("PREPARE_PLAN_XML_QUERY", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(PLAN_QUERY);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class PrepareRecords extends org.jooq.impl.AbstractRoutine<org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1188041584;
|
||||
private static final long serialVersionUID = 1327322139;
|
||||
|
||||
|
||||
/**
|
||||
@ -30,7 +30,7 @@ public class PrepareRecords extends org.jooq.impl.AbstractRoutine<org.jooq.examp
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public PrepareRecords() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "PREPARE_RECORDS", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
super("PREPARE_RECORDS", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.examples.oracle.sys.udt.DbmsXplanType.DBMS_XPLAN_TYPE.getDataType().asArrayDataType(org.jooq.examples.oracle.sys.udt.records.DbmsXplanTypeTableRecord.class));
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(PLAN_CUR);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
*/
|
||||
public class ValidateFormat extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = -1047665620;
|
||||
private static final long serialVersionUID = 1376721367;
|
||||
|
||||
|
||||
/**
|
||||
@ -41,7 +41,7 @@ public class ValidateFormat extends org.jooq.impl.AbstractRoutine<java.lang.Obje
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public ValidateFormat() {
|
||||
super(org.jooq.SQLDialect.ORACLE, "VALIDATE_FORMAT", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.util.oracle.OracleDataType.getDefaultDataType("PL/SQL BOOLEAN"));
|
||||
super("VALIDATE_FORMAT", org.jooq.examples.oracle.sys.Sys.SYS, org.jooq.examples.oracle.sys.packages.DbmsXplan.DBMS_XPLAN, org.jooq.util.oracle.OracleDataType.getDefaultDataType("PL/SQL BOOLEAN"));
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(HASPLANSTATS);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufngetaccountingenddate extends org.jooq.impl.AbstractRoutine<java.sql.Timestamp> {
|
||||
|
||||
private static final long serialVersionUID = 1822719901;
|
||||
private static final long serialVersionUID = -1298575809;
|
||||
|
||||
|
||||
/**
|
||||
@ -20,7 +20,7 @@ public class Ufngetaccountingenddate extends org.jooq.impl.AbstractRoutine<java.
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufngetaccountingenddate() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnGetAccountingEndDate", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.TIMESTAMP);
|
||||
super("ufnGetAccountingEndDate", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.TIMESTAMP);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufngetaccountingstartdate extends org.jooq.impl.AbstractRoutine<java.sql.Timestamp> {
|
||||
|
||||
private static final long serialVersionUID = -1675116056;
|
||||
private static final long serialVersionUID = -1534871450;
|
||||
|
||||
|
||||
/**
|
||||
@ -20,7 +20,7 @@ public class Ufngetaccountingstartdate extends org.jooq.impl.AbstractRoutine<jav
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufngetaccountingstartdate() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnGetAccountingStartDate", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.TIMESTAMP);
|
||||
super("ufnGetAccountingStartDate", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.TIMESTAMP);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufngetcontactinformation extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = 1768070995;
|
||||
private static final long serialVersionUID = 1636143209;
|
||||
|
||||
|
||||
/**
|
||||
@ -28,7 +28,7 @@ public class Ufngetcontactinformation extends org.jooq.impl.AbstractRoutine<java
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufngetcontactinformation() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnGetContactInformation", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.util.sqlserver.SQLServerDataType.getDefaultDataType("TABLE"));
|
||||
super("ufnGetContactInformation", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.util.sqlserver.SQLServerDataType.getDefaultDataType("TABLE"));
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(CONTACTID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufngetdocumentstatustext extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 1663601478;
|
||||
private static final long serialVersionUID = 830575178;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class Ufngetdocumentstatustext extends org.jooq.impl.AbstractRoutine<java
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufngetdocumentstatustext() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnGetDocumentStatusText", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NVARCHAR);
|
||||
super("ufnGetDocumentStatusText", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NVARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(STATUS);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufngetproductdealerprice extends org.jooq.impl.AbstractRoutine<java.math.BigDecimal> {
|
||||
|
||||
private static final long serialVersionUID = 1367886330;
|
||||
private static final long serialVersionUID = -745857806;
|
||||
|
||||
|
||||
/**
|
||||
@ -30,7 +30,7 @@ public class Ufngetproductdealerprice extends org.jooq.impl.AbstractRoutine<java
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufngetproductdealerprice() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnGetProductDealerPrice", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NUMERIC);
|
||||
super("ufnGetProductDealerPrice", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NUMERIC);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(PRODUCTID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufngetproductlistprice extends org.jooq.impl.AbstractRoutine<java.math.BigDecimal> {
|
||||
|
||||
private static final long serialVersionUID = 1727048693;
|
||||
private static final long serialVersionUID = 1494131649;
|
||||
|
||||
|
||||
/**
|
||||
@ -30,7 +30,7 @@ public class Ufngetproductlistprice extends org.jooq.impl.AbstractRoutine<java.m
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufngetproductlistprice() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnGetProductListPrice", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NUMERIC);
|
||||
super("ufnGetProductListPrice", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NUMERIC);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(PRODUCTID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufngetproductstandardcost extends org.jooq.impl.AbstractRoutine<java.math.BigDecimal> {
|
||||
|
||||
private static final long serialVersionUID = 1568915080;
|
||||
private static final long serialVersionUID = -205622584;
|
||||
|
||||
|
||||
/**
|
||||
@ -30,7 +30,7 @@ public class Ufngetproductstandardcost extends org.jooq.impl.AbstractRoutine<jav
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufngetproductstandardcost() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnGetProductStandardCost", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NUMERIC);
|
||||
super("ufnGetProductStandardCost", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NUMERIC);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(PRODUCTID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufngetpurchaseorderstatustext extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 674216456;
|
||||
private static final long serialVersionUID = -1313601352;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class Ufngetpurchaseorderstatustext extends org.jooq.impl.AbstractRoutine
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufngetpurchaseorderstatustext() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnGetPurchaseOrderStatusText", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NVARCHAR);
|
||||
super("ufnGetPurchaseOrderStatusText", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NVARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(STATUS);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufngetsalesorderstatustext extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 1435616749;
|
||||
private static final long serialVersionUID = 1866693781;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class Ufngetsalesorderstatustext extends org.jooq.impl.AbstractRoutine<ja
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufngetsalesorderstatustext() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnGetSalesOrderStatusText", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NVARCHAR);
|
||||
super("ufnGetSalesOrderStatusText", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.NVARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(STATUS);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufngetstock extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -1565491317;
|
||||
private static final long serialVersionUID = 292621223;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class Ufngetstock extends org.jooq.impl.AbstractRoutine<java.lang.Integer
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufngetstock() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnGetStock", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("ufnGetStock", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(PRODUCTID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Ufnleadingzeros extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 1209535429;
|
||||
private static final long serialVersionUID = -1498764545;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class Ufnleadingzeros extends org.jooq.impl.AbstractRoutine<java.lang.Str
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Ufnleadingzeros() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "ufnLeadingZeros", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
super("ufnLeadingZeros", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO, org.jooq.impl.SQLDataType.VARCHAR);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(VALUE);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Uspgetbillofmaterials extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -1518305889;
|
||||
private static final long serialVersionUID = 2120177495;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class Uspgetbillofmaterials extends org.jooq.impl.AbstractRoutine<java.la
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Uspgetbillofmaterials() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "uspGetBillOfMaterials", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
super("uspGetBillOfMaterials", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
|
||||
addInParameter(STARTPRODUCTID);
|
||||
addInParameter(CHECKDATE);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Uspgetemployeemanagers extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -2052262546;
|
||||
private static final long serialVersionUID = -272877800;
|
||||
|
||||
|
||||
/**
|
||||
@ -20,7 +20,7 @@ public class Uspgetemployeemanagers extends org.jooq.impl.AbstractRoutine<java.l
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Uspgetemployeemanagers() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "uspGetEmployeeManagers", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
super("uspGetEmployeeManagers", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
|
||||
addInParameter(EMPLOYEEID);
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Uspgetmanageremployees extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -895001312;
|
||||
private static final long serialVersionUID = -590724594;
|
||||
|
||||
|
||||
/**
|
||||
@ -20,7 +20,7 @@ public class Uspgetmanageremployees extends org.jooq.impl.AbstractRoutine<java.l
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Uspgetmanageremployees() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "uspGetManagerEmployees", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
super("uspGetManagerEmployees", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
|
||||
addInParameter(MANAGERID);
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Uspgetwhereusedproductid extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 2006420459;
|
||||
private static final long serialVersionUID = -1346701541;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class Uspgetwhereusedproductid extends org.jooq.impl.AbstractRoutine<java
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Uspgetwhereusedproductid() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "uspGetWhereUsedProductID", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
super("uspGetWhereUsedProductID", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
|
||||
addInParameter(STARTPRODUCTID);
|
||||
addInParameter(CHECKDATE);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Usplogerror extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 1205552959;
|
||||
private static final long serialVersionUID = 1561605041;
|
||||
|
||||
|
||||
/**
|
||||
@ -20,7 +20,7 @@ public class Usplogerror extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Usplogerror() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "uspLogError", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
super("uspLogError", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
|
||||
addInOutParameter(ERRORLOGID);
|
||||
}
|
||||
|
||||
@ -8,13 +8,13 @@ package org.jooq.examples.sqlserver.adventureworks.dbo.routines;
|
||||
*/
|
||||
public class Uspprinterror extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -1015896184;
|
||||
private static final long serialVersionUID = -1542888904;
|
||||
|
||||
|
||||
/**
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Uspprinterror() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "uspPrintError", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
super("uspPrintError", org.jooq.examples.sqlserver.adventureworks.dbo.Dbo.DBO);
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.humanresources.routines;
|
||||
*/
|
||||
public class Uspupdateemployeehireinfo extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -2140094999;
|
||||
private static final long serialVersionUID = 797195309;
|
||||
|
||||
|
||||
/**
|
||||
@ -50,7 +50,7 @@ public class Uspupdateemployeehireinfo extends org.jooq.impl.AbstractRoutine<jav
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Uspupdateemployeehireinfo() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "uspUpdateEmployeeHireInfo", org.jooq.examples.sqlserver.adventureworks.humanresources.Humanresources.HUMANRESOURCES);
|
||||
super("uspUpdateEmployeeHireInfo", org.jooq.examples.sqlserver.adventureworks.humanresources.Humanresources.HUMANRESOURCES);
|
||||
|
||||
addInParameter(EMPLOYEEID);
|
||||
addInParameter(TITLE);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.humanresources.routines;
|
||||
*/
|
||||
public class Uspupdateemployeelogin extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -348747616;
|
||||
private static final long serialVersionUID = 691031632;
|
||||
|
||||
|
||||
/**
|
||||
@ -45,7 +45,7 @@ public class Uspupdateemployeelogin extends org.jooq.impl.AbstractRoutine<java.l
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Uspupdateemployeelogin() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "uspUpdateEmployeeLogin", org.jooq.examples.sqlserver.adventureworks.humanresources.Humanresources.HUMANRESOURCES);
|
||||
super("uspUpdateEmployeeLogin", org.jooq.examples.sqlserver.adventureworks.humanresources.Humanresources.HUMANRESOURCES);
|
||||
|
||||
addInParameter(EMPLOYEEID);
|
||||
addInParameter(MANAGERID);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.examples.sqlserver.adventureworks.humanresources.routines;
|
||||
*/
|
||||
public class Uspupdateemployeepersonalinfo extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 1948652912;
|
||||
private static final long serialVersionUID = -2090327500;
|
||||
|
||||
|
||||
/**
|
||||
@ -40,7 +40,7 @@ public class Uspupdateemployeepersonalinfo extends org.jooq.impl.AbstractRoutine
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public Uspupdateemployeepersonalinfo() {
|
||||
super(org.jooq.SQLDialect.SQLSERVER, "uspUpdateEmployeePersonalInfo", org.jooq.examples.sqlserver.adventureworks.humanresources.Humanresources.HUMANRESOURCES);
|
||||
super("uspUpdateEmployeePersonalInfo", org.jooq.examples.sqlserver.adventureworks.humanresources.Humanresources.HUMANRESOURCES);
|
||||
|
||||
addInParameter(EMPLOYEEID);
|
||||
addInParameter(NATIONALIDNUMBER);
|
||||
|
||||
@ -7,22 +7,6 @@ package org.jooq.test.ase.generatedclasses.enums;
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public enum TLanguage implements org.jooq.MasterDataType<java.lang.Integer> {
|
||||
|
||||
/**
|
||||
* English
|
||||
*/
|
||||
en(1, "en", "English"),
|
||||
|
||||
/**
|
||||
* Deutsch
|
||||
*/
|
||||
de(2, "de", "Deutsch"),
|
||||
|
||||
/**
|
||||
* Français
|
||||
*/
|
||||
fr(3, "fr", "Français"),
|
||||
pt(4, "pt", null),
|
||||
;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
|
||||
@ -7,21 +7,6 @@ package org.jooq.test.ase.generatedclasses.enums;
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public enum T_658_11 implements org.jooq.MasterDataType<java.lang.String> {
|
||||
|
||||
/**
|
||||
* A
|
||||
*/
|
||||
A__("A "),
|
||||
|
||||
/**
|
||||
* B
|
||||
*/
|
||||
B__("B "),
|
||||
|
||||
/**
|
||||
* C
|
||||
*/
|
||||
C__("C "),
|
||||
;
|
||||
|
||||
private final java.lang.String id;
|
||||
|
||||
@ -7,21 +7,6 @@ package org.jooq.test.ase.generatedclasses.enums;
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public enum T_658_12 implements org.jooq.MasterDataType<java.lang.String> {
|
||||
|
||||
/**
|
||||
* A
|
||||
*/
|
||||
A__("A ", "A "),
|
||||
|
||||
/**
|
||||
* B
|
||||
*/
|
||||
B__("B ", "B "),
|
||||
|
||||
/**
|
||||
* C
|
||||
*/
|
||||
C__("C ", "C "),
|
||||
;
|
||||
|
||||
private final java.lang.String id;
|
||||
|
||||
@ -7,21 +7,6 @@ package org.jooq.test.ase.generatedclasses.enums;
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public enum T_658_21 implements org.jooq.MasterDataType<java.lang.Integer> {
|
||||
|
||||
/**
|
||||
* 1
|
||||
*/
|
||||
_1(1),
|
||||
|
||||
/**
|
||||
* 2
|
||||
*/
|
||||
_2(2),
|
||||
|
||||
/**
|
||||
* 3
|
||||
*/
|
||||
_3(3),
|
||||
;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
|
||||
@ -7,21 +7,6 @@ package org.jooq.test.ase.generatedclasses.enums;
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public enum T_658_22 implements org.jooq.MasterDataType<java.lang.Integer> {
|
||||
|
||||
/**
|
||||
* 1
|
||||
*/
|
||||
_1(1, 1),
|
||||
|
||||
/**
|
||||
* 2
|
||||
*/
|
||||
_2(2, 2),
|
||||
|
||||
/**
|
||||
* 3
|
||||
*/
|
||||
_3(3, 3),
|
||||
;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
|
||||
@ -7,21 +7,6 @@ package org.jooq.test.ase.generatedclasses.enums;
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public enum T_658_31 implements org.jooq.MasterDataType<java.lang.Long> {
|
||||
|
||||
/**
|
||||
* 1
|
||||
*/
|
||||
_1(1L),
|
||||
|
||||
/**
|
||||
* 2
|
||||
*/
|
||||
_2(2L),
|
||||
|
||||
/**
|
||||
* 3
|
||||
*/
|
||||
_3(3L),
|
||||
;
|
||||
|
||||
private final java.lang.Long id;
|
||||
|
||||
@ -7,21 +7,6 @@ package org.jooq.test.ase.generatedclasses.enums;
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public enum T_658_32 implements org.jooq.MasterDataType<java.lang.Long> {
|
||||
|
||||
/**
|
||||
* 1
|
||||
*/
|
||||
_1(1L, 1L),
|
||||
|
||||
/**
|
||||
* 2
|
||||
*/
|
||||
_2(2L, 2L),
|
||||
|
||||
/**
|
||||
* 3
|
||||
*/
|
||||
_3(3L, 3L),
|
||||
;
|
||||
|
||||
private final java.lang.Long id;
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.db2.generatedclasses.routines;
|
||||
*/
|
||||
public class F317 extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 601024316;
|
||||
private static final long serialVersionUID = -165538977;
|
||||
|
||||
|
||||
/**
|
||||
@ -40,7 +40,7 @@ public class F317 extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public F317() {
|
||||
super(org.jooq.SQLDialect.DB2, "F317", org.jooq.test.db2.generatedclasses.Lukas.LUKAS, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("F317", org.jooq.test.db2.generatedclasses.Lukas.LUKAS, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P1);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.db2.generatedclasses.routines;
|
||||
*/
|
||||
public class FAuthorExists extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -1447388815;
|
||||
private static final long serialVersionUID = 1228369056;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class FAuthorExists extends org.jooq.impl.AbstractRoutine<java.lang.Integ
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FAuthorExists() {
|
||||
super(org.jooq.SQLDialect.DB2, "F_AUTHOR_EXISTS", org.jooq.test.db2.generatedclasses.Lukas.LUKAS, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("F_AUTHOR_EXISTS", org.jooq.test.db2.generatedclasses.Lukas.LUKAS, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(AUTHOR_NAME);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.db2.generatedclasses.routines;
|
||||
*/
|
||||
public class FNumber extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 1800951327;
|
||||
private static final long serialVersionUID = -1611651156;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class FNumber extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FNumber() {
|
||||
super(org.jooq.SQLDialect.DB2, "F_NUMBER", org.jooq.test.db2.generatedclasses.Lukas.LUKAS, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("F_NUMBER", org.jooq.test.db2.generatedclasses.Lukas.LUKAS, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(N);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.db2.generatedclasses.routines;
|
||||
*/
|
||||
public class FOne extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 1275898620;
|
||||
private static final long serialVersionUID = -1677169151;
|
||||
|
||||
|
||||
/**
|
||||
@ -20,7 +20,7 @@ public class FOne extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FOne() {
|
||||
super(org.jooq.SQLDialect.DB2, "F_ONE", org.jooq.test.db2.generatedclasses.Lukas.LUKAS, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("F_ONE", org.jooq.test.db2.generatedclasses.Lukas.LUKAS, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.db2.generatedclasses.routines;
|
||||
*/
|
||||
public class P391 extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -971186860;
|
||||
private static final long serialVersionUID = -167633897;
|
||||
|
||||
|
||||
/**
|
||||
@ -45,7 +45,7 @@ public class P391 extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public P391() {
|
||||
super(org.jooq.SQLDialect.DB2, "P391", org.jooq.test.db2.generatedclasses.Lukas.LUKAS);
|
||||
super("P391", org.jooq.test.db2.generatedclasses.Lukas.LUKAS);
|
||||
|
||||
addInParameter(I1);
|
||||
addInOutParameter(IO1);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.db2.generatedclasses.routines;
|
||||
*/
|
||||
public class PAuthorExists extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 240595329;
|
||||
private static final long serialVersionUID = 1464707502;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class PAuthorExists extends org.jooq.impl.AbstractRoutine<java.lang.Void>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public PAuthorExists() {
|
||||
super(org.jooq.SQLDialect.DB2, "P_AUTHOR_EXISTS", org.jooq.test.db2.generatedclasses.Lukas.LUKAS);
|
||||
super("P_AUTHOR_EXISTS", org.jooq.test.db2.generatedclasses.Lukas.LUKAS);
|
||||
|
||||
addInParameter(AUTHOR_NAME);
|
||||
addOutParameter(RESULT);
|
||||
|
||||
@ -8,13 +8,13 @@ package org.jooq.test.db2.generatedclasses.routines;
|
||||
*/
|
||||
public class PCreateAuthor extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 1245466533;
|
||||
private static final long serialVersionUID = -546258804;
|
||||
|
||||
|
||||
/**
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public PCreateAuthor() {
|
||||
super(org.jooq.SQLDialect.DB2, "P_CREATE_AUTHOR", org.jooq.test.db2.generatedclasses.Lukas.LUKAS);
|
||||
super("P_CREATE_AUTHOR", org.jooq.test.db2.generatedclasses.Lukas.LUKAS);
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.db2.generatedclasses.routines;
|
||||
*/
|
||||
public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 1270783149;
|
||||
private static final long serialVersionUID = -2081815214;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine<java.lang
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public PCreateAuthorByName() {
|
||||
super(org.jooq.SQLDialect.DB2, "P_CREATE_AUTHOR_BY_NAME", org.jooq.test.db2.generatedclasses.Lukas.LUKAS);
|
||||
super("P_CREATE_AUTHOR_BY_NAME", org.jooq.test.db2.generatedclasses.Lukas.LUKAS);
|
||||
|
||||
addInParameter(FIRST_NAME);
|
||||
addInParameter(LAST_NAME);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.db2.generatedclasses.routines;
|
||||
*/
|
||||
public class PUnused extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 1290146272;
|
||||
private static final long serialVersionUID = 1193416239;
|
||||
|
||||
|
||||
/**
|
||||
@ -30,7 +30,7 @@ public class PUnused extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public PUnused() {
|
||||
super(org.jooq.SQLDialect.DB2, "P_UNUSED", org.jooq.test.db2.generatedclasses.Lukas.LUKAS);
|
||||
super("P_UNUSED", org.jooq.test.db2.generatedclasses.Lukas.LUKAS);
|
||||
|
||||
addInParameter(IN1);
|
||||
addOutParameter(OUT1);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses.routines;
|
||||
*/
|
||||
public class F317 extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -851593250;
|
||||
private static final long serialVersionUID = 580251765;
|
||||
|
||||
|
||||
/**
|
||||
@ -40,7 +40,7 @@ public class F317 extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public F317() {
|
||||
super(org.jooq.SQLDialect.H2, "F317", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("F317", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P1);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses.routines;
|
||||
*/
|
||||
public class FArrays1 extends org.jooq.impl.AbstractRoutine<java.lang.Object[]> {
|
||||
|
||||
private static final long serialVersionUID = 387907555;
|
||||
private static final long serialVersionUID = 1114183660;
|
||||
|
||||
|
||||
/**
|
||||
@ -31,7 +31,7 @@ public class FArrays1 extends org.jooq.impl.AbstractRoutine<java.lang.Object[]>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FArrays1() {
|
||||
super(org.jooq.SQLDialect.H2, "F_ARRAYS1", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.OTHER.getArrayDataType());
|
||||
super("F_ARRAYS1", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.OTHER.getArrayDataType());
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P1);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses.routines;
|
||||
*/
|
||||
public class FArrays2 extends org.jooq.impl.AbstractRoutine<java.lang.Object[]> {
|
||||
|
||||
private static final long serialVersionUID = 595114756;
|
||||
private static final long serialVersionUID = 1575400205;
|
||||
|
||||
|
||||
/**
|
||||
@ -31,7 +31,7 @@ public class FArrays2 extends org.jooq.impl.AbstractRoutine<java.lang.Object[]>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FArrays2() {
|
||||
super(org.jooq.SQLDialect.H2, "F_ARRAYS2", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.OTHER.getArrayDataType());
|
||||
super("F_ARRAYS2", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.OTHER.getArrayDataType());
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P1);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses.routines;
|
||||
*/
|
||||
public class FArrays3 extends org.jooq.impl.AbstractRoutine<java.lang.Object[]> {
|
||||
|
||||
private static final long serialVersionUID = 802321957;
|
||||
private static final long serialVersionUID = 2036616750;
|
||||
|
||||
|
||||
/**
|
||||
@ -31,7 +31,7 @@ public class FArrays3 extends org.jooq.impl.AbstractRoutine<java.lang.Object[]>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FArrays3() {
|
||||
super(org.jooq.SQLDialect.H2, "F_ARRAYS3", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.OTHER.getArrayDataType());
|
||||
super("F_ARRAYS3", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.OTHER.getArrayDataType());
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P1);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses.routines;
|
||||
*/
|
||||
public class FAuthorExists extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 905052866;
|
||||
private static final long serialVersionUID = 1261265625;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class FAuthorExists extends org.jooq.impl.AbstractRoutine<java.lang.Integ
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FAuthorExists() {
|
||||
super(org.jooq.SQLDialect.H2, "F_AUTHOR_EXISTS", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("F_AUTHOR_EXISTS", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P2);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses.routines;
|
||||
*/
|
||||
public class FGetOneCursor extends org.jooq.impl.AbstractRoutine<org.jooq.Result<org.jooq.Record>> {
|
||||
|
||||
private static final long serialVersionUID = 890945793;
|
||||
private static final long serialVersionUID = -1815405672;
|
||||
|
||||
|
||||
/**
|
||||
@ -28,7 +28,7 @@ public class FGetOneCursor extends org.jooq.impl.AbstractRoutine<org.jooq.Result
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FGetOneCursor() {
|
||||
super(org.jooq.SQLDialect.H2, "F_GET_ONE_CURSOR", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.RESULT);
|
||||
super("F_GET_ONE_CURSOR", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.RESULT);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P2);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses.routines;
|
||||
*/
|
||||
public class FNumber extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 9135352;
|
||||
private static final long serialVersionUID = -819593599;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class FNumber extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FNumber() {
|
||||
super(org.jooq.SQLDialect.H2, "F_NUMBER", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("F_NUMBER", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P1);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses.routines;
|
||||
*/
|
||||
public class FOne extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -1058638526;
|
||||
private static final long serialVersionUID = -1256811765;
|
||||
|
||||
|
||||
/**
|
||||
@ -20,7 +20,7 @@ public class FOne extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FOne() {
|
||||
super(org.jooq.SQLDialect.H2, "F_ONE", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("F_ONE", org.jooq.test.h2.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
}
|
||||
|
||||
@ -8,13 +8,13 @@ package org.jooq.test.h2.generatedclasses.routines;
|
||||
*/
|
||||
public class PCreateAuthor extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -426281969;
|
||||
private static final long serialVersionUID = 1101387928;
|
||||
|
||||
|
||||
/**
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public PCreateAuthor() {
|
||||
super(org.jooq.SQLDialect.H2, "P_CREATE_AUTHOR", org.jooq.test.h2.generatedclasses.Public.PUBLIC);
|
||||
super("P_CREATE_AUTHOR", org.jooq.test.h2.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
}
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.h2.generatedclasses.routines;
|
||||
*/
|
||||
public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -313035427;
|
||||
private static final long serialVersionUID = -1676101580;
|
||||
|
||||
|
||||
/**
|
||||
@ -25,7 +25,7 @@ public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine<java.lang
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public PCreateAuthorByName() {
|
||||
super(org.jooq.SQLDialect.H2, "P_CREATE_AUTHOR_BY_NAME", org.jooq.test.h2.generatedclasses.Public.PUBLIC);
|
||||
super("P_CREATE_AUTHOR_BY_NAME", org.jooq.test.h2.generatedclasses.Public.PUBLIC);
|
||||
|
||||
addInParameter(P2);
|
||||
addInParameter(P3);
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the PUBLIC schema
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Public extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = -1888174792;
|
||||
private static final long serialVersionUID = 1351298297;
|
||||
|
||||
/**
|
||||
* The singleton instance of PUBLIC
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class PublicFactory extends org.jooq.util.hsqldb.HSQLDBFactory {
|
||||
|
||||
private static final long serialVersionUID = 627466022;
|
||||
private static final long serialVersionUID = 1264186885;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
*
|
||||
* Convenience access to all stored procedures and functions in PUBLIC
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Routines {
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
*
|
||||
* Convenience access to all sequences in PUBLIC
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Sequences {
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
*
|
||||
* Convenience access to all tables in PUBLIC
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Tables {
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum BooleanTrueFalseLc implements org.jooq.EnumType {
|
||||
true_("true"),
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum BooleanTrueFalseUc implements org.jooq.EnumType {
|
||||
TRUE("TRUE"),
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum BooleanYesNoLc implements org.jooq.EnumType {
|
||||
yes("yes"),
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum BooleanYesNoUc implements org.jooq.EnumType {
|
||||
YES("YES"),
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum BooleanYnLc implements org.jooq.EnumType {
|
||||
y("y"),
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum BooleanYnUc implements org.jooq.EnumType {
|
||||
Y("Y"),
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum Boolean_10 implements org.jooq.EnumType {
|
||||
_1("1"),
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum TLanguage implements org.jooq.MasterDataType<java.lang.Integer> {
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum T_658_11 implements org.jooq.MasterDataType<java.lang.String> {
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum T_658_12 implements org.jooq.MasterDataType<java.lang.String> {
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum T_658_21 implements org.jooq.MasterDataType<java.lang.Integer> {
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum T_658_22 implements org.jooq.MasterDataType<java.lang.Integer> {
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum T_658_31 implements org.jooq.MasterDataType<java.lang.Long> {
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.hsqldb.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum T_658_32 implements org.jooq.MasterDataType<java.lang.Long> {
|
||||
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class F317 extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -2103928480;
|
||||
private static final long serialVersionUID = 1440598450;
|
||||
|
||||
|
||||
/**
|
||||
@ -42,7 +42,7 @@ public class F317 extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public F317() {
|
||||
super(org.jooq.SQLDialect.HSQLDB, "F317", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("F317", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(P1);
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FArrays1 extends org.jooq.impl.AbstractRoutine<java.lang.Integer[]> {
|
||||
|
||||
private static final long serialVersionUID = -524421976;
|
||||
private static final long serialVersionUID = 914725560;
|
||||
|
||||
|
||||
/**
|
||||
@ -27,7 +27,7 @@ public class FArrays1 extends org.jooq.impl.AbstractRoutine<java.lang.Integer[]>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FArrays1() {
|
||||
super(org.jooq.SQLDialect.HSQLDB, "F_ARRAYS1", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER.getArrayDataType());
|
||||
super("F_ARRAYS1", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER.getArrayDataType());
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(IN_ARRAY);
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FArrays2 extends org.jooq.impl.AbstractRoutine<java.lang.Long[]> {
|
||||
|
||||
private static final long serialVersionUID = 718227250;
|
||||
private static final long serialVersionUID = -217802172;
|
||||
|
||||
|
||||
/**
|
||||
@ -27,7 +27,7 @@ public class FArrays2 extends org.jooq.impl.AbstractRoutine<java.lang.Long[]> {
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FArrays2() {
|
||||
super(org.jooq.SQLDialect.HSQLDB, "F_ARRAYS2", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.BIGINT.getArrayDataType());
|
||||
super("F_ARRAYS2", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.BIGINT.getArrayDataType());
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(IN_ARRAY);
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FArrays3 extends org.jooq.impl.AbstractRoutine<java.lang.String[]> {
|
||||
|
||||
private static final long serialVersionUID = 1282472828;
|
||||
private static final long serialVersionUID = -130484950;
|
||||
|
||||
|
||||
/**
|
||||
@ -27,7 +27,7 @@ public class FArrays3 extends org.jooq.impl.AbstractRoutine<java.lang.String[]>
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FArrays3() {
|
||||
super(org.jooq.SQLDialect.HSQLDB, "F_ARRAYS3", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType());
|
||||
super("F_ARRAYS3", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType());
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(IN_ARRAY);
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FAuthorExists extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 1133840981;
|
||||
private static final long serialVersionUID = -1801030077;
|
||||
|
||||
|
||||
/**
|
||||
@ -27,7 +27,7 @@ public class FAuthorExists extends org.jooq.impl.AbstractRoutine<java.lang.Integ
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FAuthorExists() {
|
||||
super(org.jooq.SQLDialect.HSQLDB, "F_AUTHOR_EXISTS", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
super("F_AUTHOR_EXISTS", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(AUTHOR_NAME);
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.6"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FGetOneCursor extends org.jooq.impl.AbstractRoutine<org.jooq.Result<org.jooq.Record>> {
|
||||
|
||||
private static final long serialVersionUID = 553268554;
|
||||
private static final long serialVersionUID = -2147058758;
|
||||
|
||||
|
||||
/**
|
||||
@ -27,7 +27,7 @@ public class FGetOneCursor extends org.jooq.impl.AbstractRoutine<org.jooq.Result
|
||||
* Create a new routine call instance
|
||||
*/
|
||||
public FGetOneCursor() {
|
||||
super(org.jooq.SQLDialect.HSQLDB, "F_GET_ONE_CURSOR", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.RESULT);
|
||||
super("F_GET_ONE_CURSOR", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.RESULT);
|
||||
|
||||
setReturnParameter(RETURN_VALUE);
|
||||
addInParameter(BOOK_IDS);
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user