[#2379] Replace 3.0-RC1 Executor type by a contextual DSL type
constructed from Factory.using() - Step 4 - Renamed ContextDSL to DSLContext
This commit is contained in:
parent
427a09ecac
commit
0183ecab99
@ -55,7 +55,7 @@ import liquibase.database.structure.View;
|
||||
import liquibase.snapshot.DatabaseSnapshot;
|
||||
import liquibase.snapshot.DatabaseSnapshotGeneratorFactory;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.Sequence;
|
||||
@ -72,7 +72,7 @@ public class AdaptersTest {
|
||||
private static Connection connection;
|
||||
private static H2Database database;
|
||||
private static DatabaseSnapshot snapshot;
|
||||
private static ContextDSL create;
|
||||
private static DSLContext create;
|
||||
|
||||
@BeforeClass
|
||||
public static void before() throws Exception {
|
||||
|
||||
@ -47,7 +47,7 @@ import java.util.LinkedHashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.tools.JooqLogger;
|
||||
@ -74,7 +74,7 @@ public abstract class AbstractDatabase implements Database {
|
||||
|
||||
private SQLDialect dialect;
|
||||
private Connection connection;
|
||||
private ContextDSL create;
|
||||
private DSLContext create;
|
||||
private String[] excludes;
|
||||
private String[] includes;
|
||||
private String[] recordVersionFields;
|
||||
@ -135,7 +135,7 @@ public abstract class AbstractDatabase implements Database {
|
||||
}
|
||||
|
||||
@Override
|
||||
public final ContextDSL create() {
|
||||
public final DSLContext create() {
|
||||
if (create == null) {
|
||||
create = create0();
|
||||
}
|
||||
@ -740,7 +740,7 @@ public abstract class AbstractDatabase implements Database {
|
||||
/**
|
||||
* Create a new Factory
|
||||
*/
|
||||
protected abstract ContextDSL create0();
|
||||
protected abstract DSLContext create0();
|
||||
|
||||
/**
|
||||
* Retrieve primary keys and store them to relations
|
||||
|
||||
@ -38,7 +38,7 @@ package org.jooq.util;
|
||||
|
||||
import java.sql.Connection;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
|
||||
/**
|
||||
@ -211,7 +211,7 @@ public abstract class AbstractDefinition implements Definition {
|
||||
return hashCode;
|
||||
}
|
||||
|
||||
protected final ContextDSL create() {
|
||||
protected final DSLContext create() {
|
||||
return database.create();
|
||||
}
|
||||
|
||||
|
||||
@ -39,7 +39,7 @@ package org.jooq.util;
|
||||
import java.sql.Connection;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.util.jaxb.CustomType;
|
||||
import org.jooq.util.jaxb.EnumType;
|
||||
@ -289,7 +289,7 @@ public interface Database {
|
||||
/**
|
||||
* Create the factory for this database
|
||||
*/
|
||||
ContextDSL create();
|
||||
DSLContext create();
|
||||
|
||||
/**
|
||||
* Check whether a type is an array type
|
||||
|
||||
@ -46,7 +46,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record10;
|
||||
@ -79,7 +79,7 @@ public class ASEDatabase extends AbstractDatabase {
|
||||
private static final JooqLogger log = JooqLogger.getLogger(ASEDatabase.class);
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.ASE);
|
||||
}
|
||||
|
||||
|
||||
@ -53,7 +53,7 @@ import java.util.List;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.ConnectionProvider;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record3;
|
||||
import org.jooq.Result;
|
||||
@ -269,7 +269,7 @@ public class CUBRIDDatabase extends AbstractDatabase {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.CUBRID);
|
||||
}
|
||||
}
|
||||
|
||||
@ -56,7 +56,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record4;
|
||||
import org.jooq.Result;
|
||||
@ -93,7 +93,7 @@ import org.jooq.util.db2.syscat.tables.Tables;
|
||||
public class DB2Database extends AbstractDatabase {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.DB2);
|
||||
}
|
||||
|
||||
|
||||
@ -50,7 +50,7 @@ import java.util.List;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record5;
|
||||
@ -322,7 +322,7 @@ public class DerbyDatabase extends AbstractDatabase {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.DERBY);
|
||||
}
|
||||
}
|
||||
|
||||
@ -45,7 +45,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record3;
|
||||
import org.jooq.Result;
|
||||
@ -252,7 +252,7 @@ public class FirebirdDatabase extends AbstractDatabase {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.FIREBIRD);
|
||||
}
|
||||
}
|
||||
|
||||
@ -47,7 +47,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record4;
|
||||
import org.jooq.Result;
|
||||
@ -82,7 +82,7 @@ import org.jooq.util.h2.information_schema.tables.TypeInfo;
|
||||
public class H2Database extends AbstractDatabase {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.H2);
|
||||
}
|
||||
|
||||
|
||||
@ -50,7 +50,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record4;
|
||||
import org.jooq.Result;
|
||||
@ -79,7 +79,7 @@ import org.jooq.util.UDTDefinition;
|
||||
public class HSQLDBDatabase extends AbstractDatabase {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.HSQLDB);
|
||||
}
|
||||
|
||||
|
||||
@ -50,7 +50,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record4;
|
||||
import org.jooq.Result;
|
||||
@ -86,7 +86,7 @@ import org.jooq.util.ingres.ingres.tables.Iitables;
|
||||
public class IngresDatabase extends AbstractDatabase {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.INGRES);
|
||||
}
|
||||
|
||||
|
||||
@ -40,7 +40,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.Sequence;
|
||||
@ -71,7 +71,7 @@ public class JDBCDatabase extends AbstractDatabase {
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.SQL99);
|
||||
}
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record4;
|
||||
import org.jooq.Record5;
|
||||
@ -330,7 +330,7 @@ public class MySQLDatabase extends AbstractDatabase {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.MYSQL);
|
||||
}
|
||||
}
|
||||
|
||||
@ -53,7 +53,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record4;
|
||||
import org.jooq.Result;
|
||||
@ -406,7 +406,7 @@ public class OracleDatabase extends AbstractDatabase {
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.ORACLE);
|
||||
}
|
||||
}
|
||||
|
||||
@ -59,7 +59,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record3;
|
||||
import org.jooq.Record4;
|
||||
@ -390,7 +390,7 @@ public class PostgresDatabase extends AbstractDatabase {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.POSTGRES);
|
||||
}
|
||||
}
|
||||
|
||||
@ -43,7 +43,7 @@ import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.impl.Factory;
|
||||
@ -82,7 +82,7 @@ public class SQLiteDatabase extends AbstractDatabase {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.SQLITE);
|
||||
}
|
||||
|
||||
|
||||
@ -48,7 +48,7 @@ import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record4;
|
||||
import org.jooq.Result;
|
||||
@ -77,7 +77,7 @@ import org.jooq.util.UDTDefinition;
|
||||
public class SQLServerDatabase extends AbstractDatabase {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.SQLSERVER);
|
||||
}
|
||||
|
||||
|
||||
@ -45,7 +45,7 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.impl.Factory;
|
||||
@ -81,7 +81,7 @@ public class SybaseDatabase extends AbstractDatabase {
|
||||
private static final JooqLogger log = JooqLogger.getLogger(SybaseDatabase.class);
|
||||
|
||||
@Override
|
||||
protected ContextDSL create0() {
|
||||
protected DSLContext create0() {
|
||||
return Factory.using(getConnection(), SQLDialect.SYBASE);
|
||||
}
|
||||
|
||||
|
||||
@ -46,7 +46,7 @@ import static org.jooq.impl.Factory.val;
|
||||
import java.sql.Connection;
|
||||
import java.sql.DriverManager;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.impl.Factory;
|
||||
|
||||
@ -56,7 +56,7 @@ public class AdventureWorks {
|
||||
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
|
||||
Connection connection = DriverManager.getConnection("jdbc:sqlserver://localhost:1433;databaseName=AdventureWorks;integratedSecurity=true");
|
||||
|
||||
ContextDSL create = Factory.using(connection, SQLDialect.SQLSERVER);
|
||||
DSLContext create = Factory.using(connection, SQLDialect.SQLSERVER);
|
||||
|
||||
System.out.println(create
|
||||
.select(Employee.fields())
|
||||
|
||||
@ -40,7 +40,7 @@ import static org.jooq.impl.Factory.table;
|
||||
import java.sql.Connection;
|
||||
import java.sql.DriverManager;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.examples.oracle.sys.packages.DbmsXplan;
|
||||
import org.jooq.impl.Factory;
|
||||
@ -51,7 +51,7 @@ public class DBMS_XPLAN {
|
||||
Class.forName("oracle.jdbc.OracleDriver");
|
||||
Connection connection = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe", "TEST", "TEST");
|
||||
|
||||
ContextDSL ora = Factory.using(connection, SQLDialect.ORACLE);
|
||||
DSLContext ora = Factory.using(connection, SQLDialect.ORACLE);
|
||||
ora.fetch("select * from t_book b join t_author a on b.author_id = a.id");
|
||||
|
||||
// TODO [#1113] This doesn't work yet
|
||||
|
||||
@ -45,7 +45,7 @@ import static org.jooq.test.mysql.generatedclasses.tables.TBook.T_BOOK;
|
||||
import java.sql.Connection;
|
||||
import java.sql.DriverManager;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Result;
|
||||
import org.jooq.SQLDialect;
|
||||
@ -61,7 +61,7 @@ import org.jooq.test.mysql.generatedclasses.tables.records.TBookRecord;
|
||||
|
||||
public class Library {
|
||||
|
||||
private static ContextDSL create() throws Exception {
|
||||
private static DSLContext create() throws Exception {
|
||||
return Factory.using(getConnection(), SQLDialect.MYSQL);
|
||||
}
|
||||
|
||||
|
||||
@ -43,7 +43,7 @@ import static org.jooq.examples.mysql.sakila.Tables.CUSTOMER;
|
||||
import java.sql.Connection;
|
||||
import java.sql.DriverManager;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.impl.Factory;
|
||||
|
||||
@ -53,7 +53,7 @@ public class Sakila {
|
||||
Class.forName("com.mysql.jdbc.Driver");
|
||||
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost/sakila", "root", "");
|
||||
|
||||
ContextDSL create = Factory.using(connection, SQLDialect.MYSQL);
|
||||
DSLContext create = Factory.using(connection, SQLDialect.MYSQL);
|
||||
|
||||
System.out.println(create
|
||||
.select()
|
||||
|
||||
@ -45,7 +45,7 @@ import java.sql.Date;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -125,7 +125,7 @@ public class ASETest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.ASE, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -55,7 +55,7 @@ import java.util.UUID;
|
||||
import junit.framework.Assert;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DAO;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
@ -705,8 +705,8 @@ public abstract class BaseTest<
|
||||
return delegate.getCastableDataTypes();
|
||||
}
|
||||
|
||||
protected ContextDSL create(Settings settings) {
|
||||
ContextDSL create = delegate.create(settings);
|
||||
protected DSLContext create(Settings settings) {
|
||||
DSLContext create = delegate.create(settings);
|
||||
create.configuration().getExecuteListeners().add(new TestStatisticsListener());
|
||||
return create;
|
||||
}
|
||||
@ -723,7 +723,7 @@ public abstract class BaseTest<
|
||||
return delegate.getConnection0(null, null);
|
||||
}
|
||||
|
||||
protected final ContextDSL create() {
|
||||
protected final DSLContext create() {
|
||||
return delegate.create();
|
||||
}
|
||||
|
||||
|
||||
@ -47,7 +47,7 @@ import java.sql.Date;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -132,7 +132,7 @@ public class CUBRIDTest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.CUBRID, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -50,7 +50,7 @@ import java.sql.Date;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -132,7 +132,7 @@ public class DB2Test extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.DB2, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -52,7 +52,7 @@ import java.sql.Timestamp;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -132,7 +132,7 @@ public class DerbyTest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.DERBY, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -57,7 +57,7 @@ import java.sql.Date;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -124,7 +124,7 @@ public class FirebirdTest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.FIREBIRD, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -52,7 +52,7 @@ import java.sql.Timestamp;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DAO;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
@ -140,7 +140,7 @@ public class H2Test extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.H2, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -61,7 +61,7 @@ import java.sql.Timestamp;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -130,7 +130,7 @@ public class HSQLDBTest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.HSQLDB, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -58,7 +58,7 @@ import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -129,7 +129,7 @@ public class HSQLDBTest2 extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
settings = (settings != null) ? settings : new Settings();
|
||||
RenderMapping mapping = SettingsTools.getRenderMapping(settings);
|
||||
List<MappedSchema> schemata = mapping.getSchemata();
|
||||
|
||||
@ -50,7 +50,7 @@ import java.sql.Date;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -129,7 +129,7 @@ public class IngresTest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.INGRES, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -69,7 +69,7 @@ import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DAO;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
@ -158,7 +158,7 @@ public class MySQLTest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.MYSQL, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -38,7 +38,7 @@ package org.jooq.test;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.conf.MappedSchema;
|
||||
import org.jooq.conf.RenderMapping;
|
||||
@ -65,7 +65,7 @@ public class MySQLTestSchemaMapping extends MySQLTest {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
settings = (settings != null) ? settings : new Settings();
|
||||
RenderMapping mapping = SettingsTools.getRenderMapping(settings);
|
||||
List<MappedSchema> schemata = mapping.getSchemata();
|
||||
|
||||
@ -59,7 +59,7 @@ import java.sql.Date;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -132,7 +132,7 @@ public class MySQLTestSchemaRewrite extends jOOQAbstractTest<
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.MYSQL, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -92,7 +92,7 @@ import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DAO;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
@ -214,7 +214,7 @@ public class OracleTest extends jOOQAbstractTest<
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.ORACLE, settings);
|
||||
}
|
||||
|
||||
@ -1333,7 +1333,7 @@ public class OracleTest extends jOOQAbstractTest<
|
||||
|
||||
@Test
|
||||
public void testOracleMultiSchemaFactories() throws Exception {
|
||||
ContextDSL create = Factory.using(getConnectionMultiSchema(), SQLDialect.ORACLE);
|
||||
DSLContext create = Factory.using(getConnectionMultiSchema(), SQLDialect.ORACLE);
|
||||
|
||||
UAddressTypeRecord address = new UAddressTypeRecord();
|
||||
address.setStreet(new UStreetTypeRecord());
|
||||
|
||||
@ -36,7 +36,7 @@
|
||||
|
||||
package org.jooq.test;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.conf.StatementType;
|
||||
@ -49,7 +49,7 @@ import org.jooq.impl.Factory;
|
||||
public class OracleTestInline extends OracleTest {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
settings = (settings != null) ? settings : new Settings();
|
||||
settings.withStatementType(StatementType.STATIC_STATEMENT);
|
||||
settings.withRenderFormatted(true);
|
||||
|
||||
@ -66,7 +66,7 @@ import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -148,7 +148,7 @@ public class PostgresTest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.POSTGRES, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -59,7 +59,7 @@ import java.sql.Date;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -126,7 +126,7 @@ public class SQLServerTest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.SQLSERVER, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -36,7 +36,7 @@
|
||||
|
||||
package org.jooq.test;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.conf.Settings;
|
||||
import org.jooq.conf.StatementType;
|
||||
@ -49,7 +49,7 @@ import org.jooq.impl.Factory;
|
||||
public class SQLServerTestInline extends SQLServerTest {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
settings = (settings != null) ? settings : new Settings();
|
||||
settings.withStatementType(StatementType.STATIC_STATEMENT);
|
||||
return Factory.using(getConnection(), SQLDialect.SQLSERVER, settings);
|
||||
|
||||
@ -49,7 +49,7 @@ import java.sql.Date;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -126,7 +126,7 @@ public class SQLiteTest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.SQLITE, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -54,7 +54,7 @@ import java.sql.Date;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
@ -126,7 +126,7 @@ public class SybaseTest extends jOOQAbstractTest<
|
||||
T_785Record> {
|
||||
|
||||
@Override
|
||||
protected ContextDSL create(Settings settings) {
|
||||
protected DSLContext create(Settings settings) {
|
||||
return Factory.using(getConnection(), SQLDialect.SYBASE, settings);
|
||||
}
|
||||
|
||||
|
||||
@ -37,7 +37,7 @@ package org.jooq.test._;
|
||||
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.ExecuteContext;
|
||||
import org.jooq.conf.SettingsTools;
|
||||
import org.jooq.impl.DefaultExecuteListener;
|
||||
@ -66,12 +66,12 @@ public class PrettyPrinter extends DefaultExecuteListener {
|
||||
|
||||
// Create a new factory for logging rendering purposes
|
||||
// This factory doesn't need a connection, only the SQLDialect...
|
||||
ContextDSL pretty = Factory.using(ctx.configuration().getDialect(),
|
||||
DSLContext pretty = Factory.using(ctx.configuration().getDialect(),
|
||||
|
||||
// ... and the flag for pretty-printing
|
||||
SettingsTools.clone(ctx.configuration().getSettings()).withRenderFormatted(true));
|
||||
|
||||
ContextDSL normal = Factory.using(ctx.configuration().getDialect());
|
||||
DSLContext normal = Factory.using(ctx.configuration().getDialect());
|
||||
|
||||
String n = "" + count.incrementAndGet();
|
||||
|
||||
|
||||
@ -41,7 +41,7 @@ import java.sql.ResultSet;
|
||||
import java.util.Collections;
|
||||
import java.util.Random;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.ExecuteListener;
|
||||
import org.jooq.Record1;
|
||||
import org.jooq.Record2;
|
||||
@ -91,7 +91,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
@Test
|
||||
public void testBenchmarkNewRecord() throws Exception {
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
|
||||
for (int i = 0; i < REPETITIONS_NEW_RECORD; i++) {
|
||||
create.newRecord(TBook());
|
||||
@ -128,7 +128,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
// https://github.com/jOOQ/jOOQ/issues/1625
|
||||
|
||||
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
create.configuration().getSettings().setExecuteLogging(false);
|
||||
create.configuration().setExecuteListeners(Collections.<ExecuteListener>emptyList());
|
||||
|
||||
@ -151,7 +151,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
watch.splitInfo("Reuse SQL String");
|
||||
}
|
||||
|
||||
private void testBenchmarkReuseSQLString(ContextDSL create, int repetitions) throws Exception {
|
||||
private void testBenchmarkReuseSQLString(DSLContext create, int repetitions) throws Exception {
|
||||
String sql = createSelect(create).getSQL(false);
|
||||
PreparedStatement pst = getConnection().prepareStatement(sql);
|
||||
pst.setLong(1, 1);
|
||||
@ -166,7 +166,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
pst.close();
|
||||
}
|
||||
|
||||
private void testBenchmarkReuseSelect(ContextDSL create, int repetitions) {
|
||||
private void testBenchmarkReuseSelect(DSLContext create, int repetitions) {
|
||||
Select<?> scs = createSelect(create);
|
||||
|
||||
for (int i = 0; i < repetitions; i++) {
|
||||
@ -174,13 +174,13 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
}
|
||||
}
|
||||
|
||||
private void testBenchmarkFullExecution(ContextDSL create, int repetitions) {
|
||||
private void testBenchmarkFullExecution(DSLContext create, int repetitions) {
|
||||
for (int i = 0; i < repetitions; i++) {
|
||||
createSelect(create).execute();
|
||||
}
|
||||
}
|
||||
|
||||
private Select<?> createSelect(ContextDSL create) {
|
||||
private Select<?> createSelect(DSLContext create) {
|
||||
return create.select()
|
||||
.from(TBook())
|
||||
.where(TBook_ID().equal(1))
|
||||
|
||||
@ -51,7 +51,7 @@ import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.InsertQuery;
|
||||
import org.jooq.Record1;
|
||||
@ -592,7 +592,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
jOOQAbstractTest.reset = false;
|
||||
|
||||
ContextDSL create = create(new Settings().withExecuteWithOptimisticLocking(true));
|
||||
DSLContext create = create(new Settings().withExecuteWithOptimisticLocking(true));
|
||||
boolean t = TBook_REC_TIMESTAMP() != null;
|
||||
boolean v = TBook_REC_VERSION() != null;
|
||||
|
||||
@ -694,7 +694,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
private <R extends UpdatableRecord<R>> void testStoreWithOptimisticLock0(
|
||||
Table<R> table, TableField<R, Integer> id, TableField<R, String> string) throws Exception {
|
||||
|
||||
ContextDSL create = create(new Settings().withExecuteWithOptimisticLocking(true));
|
||||
DSLContext create = create(new Settings().withExecuteWithOptimisticLocking(true));
|
||||
|
||||
// Storing without changing shouldn't execute any queries
|
||||
R record1 = create.fetchOne(table, id.equal(1));
|
||||
|
||||
@ -77,7 +77,7 @@ import java.util.Calendar;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Converter;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.Field;
|
||||
@ -1594,7 +1594,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
// [#2278] Run the subsequent test twice, once with bind values and once
|
||||
// with inlined bind values
|
||||
for (ContextDSL create : asList(
|
||||
for (DSLContext create : asList(
|
||||
create(),
|
||||
create(new Settings().withStatementType(STATIC_STATEMENT)))) {
|
||||
|
||||
|
||||
@ -53,7 +53,7 @@ import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
import java.util.Queue;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Cursor;
|
||||
import org.jooq.ExecuteContext;
|
||||
import org.jooq.ExecuteListener;
|
||||
@ -100,7 +100,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
@Test
|
||||
public void testExecuteListenerWithData() throws Exception {
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
create.configuration().getExecuteListeners().add(new DataListener());
|
||||
|
||||
create.selectOne().fetch();
|
||||
@ -210,7 +210,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
@Test
|
||||
public void testExecuteListenerCustomException() throws Exception {
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
create.configuration().getExecuteListeners().add(new CustomExceptionListener());
|
||||
|
||||
try {
|
||||
@ -236,7 +236,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
@Test
|
||||
public void testExecuteListenerOnResultQuery() throws Exception {
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
create.configuration().getExecuteListeners().add(new ResultQueryListener());
|
||||
|
||||
create.configuration().setData("Foo", "Bar");
|
||||
@ -580,7 +580,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
jOOQAbstractTest.reset = false;
|
||||
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
create.configuration().getExecuteListeners().add(new BatchSingleListener());
|
||||
|
||||
create.configuration().setData("Foo", "Bar");
|
||||
@ -794,7 +794,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
public void testExecuteListenerOnBatchMultiple() {
|
||||
jOOQAbstractTest.reset = false;
|
||||
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
create.configuration().getExecuteListeners().add(new BatchMultipleListener());
|
||||
|
||||
create.configuration().setData("Foo", "Bar");
|
||||
@ -1020,7 +1020,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
@Test
|
||||
public void testExecuteListenerFetchLazyTest() throws Exception {
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
create.configuration().getExecuteListeners().add(new FetchLazyListener());
|
||||
FetchLazyListener.reset();
|
||||
|
||||
|
||||
@ -61,7 +61,7 @@ import java.sql.Connection;
|
||||
import java.sql.Date;
|
||||
import java.util.Arrays;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.ExecuteContext;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Record;
|
||||
@ -232,7 +232,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
// [#1191] Check execution capabilities with new features in ExecuteListener
|
||||
ConnectionProviderListener.c = create().configuration().getConnectionProvider().acquire();
|
||||
try {
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
create.configuration().getExecuteListeners().add(new ConnectionProviderListener());
|
||||
q = create
|
||||
.selectFrom(TAuthor())
|
||||
@ -295,7 +295,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
@Test
|
||||
public void testAttachable() throws Exception {
|
||||
jOOQAbstractTest.reset = false;
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
|
||||
S store1 = create.newRecord(TBookStore());
|
||||
assertNotNull(store1);
|
||||
|
||||
@ -60,7 +60,7 @@ import java.util.List;
|
||||
|
||||
import org.jooq.BindContext;
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Cursor;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.FutureResult;
|
||||
@ -575,7 +575,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
// [#1169] Some additional checks to see if custom data is correctly
|
||||
// passed on to custom QueryParts
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
create.configuration().setData("Foo-Field", "Bar");
|
||||
create.configuration().setData("Foo-Condition", "Bar");
|
||||
|
||||
|
||||
@ -57,7 +57,7 @@ import java.sql.Time;
|
||||
import java.sql.Timestamp;
|
||||
import java.util.Collections;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Insert;
|
||||
import org.jooq.Record;
|
||||
@ -354,7 +354,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
// Inlining bind values globally, through the factory settings
|
||||
// -----------------------------------------------------------
|
||||
{
|
||||
ContextDSL create = create(new Settings()
|
||||
DSLContext create = create(new Settings()
|
||||
.withStatementType(StatementType.STATIC_STATEMENT));
|
||||
|
||||
Object[] array1 = create.select(
|
||||
@ -395,7 +395,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
// Inlining bind values locally, through bind value parameters
|
||||
// -----------------------------------------------------------
|
||||
{
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
|
||||
Object[] array1 = create.select(inline(s1), inline(s2), inline(s3), inline(s4)).fetchOneArray();
|
||||
Object[] array2 = create.select(inline(b1), inline(b2), inline(sh1), inline(sh2), inline(i1), inline(i2), inline(l1), inline(l2), inline(bi1), inline(bi2), inline(bd1), inline(bd2), inline(db1), inline(db2), inline(f1), inline(f2)).fetchOneArray();
|
||||
@ -429,7 +429,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
// Inlining bind values globally, through the factory settings
|
||||
// -----------------------------------------------------------
|
||||
{
|
||||
ContextDSL create = create(new Settings()
|
||||
DSLContext create = create(new Settings()
|
||||
.withStatementType(StatementType.STATIC_STATEMENT));
|
||||
|
||||
// [#1557] Check correct inlining of floating point values with
|
||||
@ -456,7 +456,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
Time t1 = Time.valueOf("12:01:15");
|
||||
Timestamp ts1 = Timestamp.valueOf("1981-07-10 12:01:15");
|
||||
|
||||
ContextDSL create = create(new Settings()
|
||||
DSLContext create = create(new Settings()
|
||||
.withStatementType(StatementType.STATIC_STATEMENT));
|
||||
|
||||
DATE date = create.newRecord(TDates());
|
||||
|
||||
@ -47,7 +47,7 @@ import java.math.BigDecimal;
|
||||
import java.sql.Date;
|
||||
import java.util.Arrays;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record1;
|
||||
@ -106,7 +106,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
return;
|
||||
}
|
||||
|
||||
ContextDSL factory = create();
|
||||
DSLContext factory = create();
|
||||
factory.use(schema().getName());
|
||||
|
||||
Result<?> result =
|
||||
|
||||
@ -50,7 +50,7 @@ import static org.jooq.impl.Factory.val;
|
||||
import java.sql.Date;
|
||||
import java.util.Vector;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Record1;
|
||||
@ -371,8 +371,8 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
// Checking for syntax correctness and locking behaviour
|
||||
// -----------------------------------------------------
|
||||
final ContextDSL create1 = create();
|
||||
final ContextDSL create2 = create();
|
||||
final DSLContext create1 = create();
|
||||
final DSLContext create2 = create();
|
||||
|
||||
((DefaultConnectionProvider) create2.configuration().getConnectionProvider()).setConnection(getNewConnection());
|
||||
create2.configuration().getConnectionProvider().acquire().setAutoCommit(false);
|
||||
|
||||
@ -51,7 +51,7 @@ import java.sql.PreparedStatement;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.Cursor;
|
||||
import org.jooq.ExecuteContext;
|
||||
import org.jooq.Record1;
|
||||
@ -99,7 +99,7 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
|
||||
|
||||
@Test
|
||||
public void testKeepStatement() throws Exception {
|
||||
ContextDSL create = create();
|
||||
DSLContext create = create();
|
||||
create.configuration().getExecuteListeners().add(new KeepStatementListener());
|
||||
|
||||
// [#385] By default, new statements are created for every execution
|
||||
|
||||
@ -47,7 +47,7 @@ import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.SQLException;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.impl.Factory;
|
||||
import org.jooq.test.h2.generatedclasses.Routines;
|
||||
@ -66,7 +66,7 @@ public class F {
|
||||
}
|
||||
|
||||
public static void pCreateAuthorByName(Connection connection, String firstName, String lastName) {
|
||||
ContextDSL create = create(connection);
|
||||
DSLContext create = create(connection);
|
||||
|
||||
create.insertInto(T_AUTHOR)
|
||||
.set(TAuthor.ID, create.select(max(TAuthor.ID).add(1)).from(T_AUTHOR).<Integer>asField())
|
||||
@ -97,7 +97,7 @@ public class F {
|
||||
}
|
||||
|
||||
public static Integer fAuthorExists(Connection connection, String authorName) {
|
||||
ContextDSL create = create(connection);
|
||||
DSLContext create = create(connection);
|
||||
|
||||
Integer result =
|
||||
create.select(sign(count()))
|
||||
@ -138,7 +138,7 @@ public class F {
|
||||
return 1;
|
||||
}
|
||||
|
||||
private static ContextDSL create(Connection connection) {
|
||||
private static DSLContext create(Connection connection) {
|
||||
return Factory.using(connection, SQLDialect.H2);
|
||||
}
|
||||
}
|
||||
|
||||
@ -38,7 +38,7 @@ package org.jooq.test.h2;
|
||||
import java.sql.Connection;
|
||||
import java.sql.SQLException;
|
||||
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.SQLDialect;
|
||||
import org.jooq.impl.Factory;
|
||||
import org.jooq.test.h2.generatedclasses.Sequences;
|
||||
@ -58,7 +58,7 @@ public class TTriggersTrigger implements Trigger {
|
||||
|
||||
@Override
|
||||
public void fire(Connection conn, Object[] oldRow, Object[] newRow) throws SQLException {
|
||||
ContextDSL create = Factory.using(conn, SQLDialect.H2);
|
||||
DSLContext create = Factory.using(conn, SQLDialect.H2);
|
||||
int maxID = create.nextval(Sequences.S_TRIGGERS_SEQUENCE).intValue();
|
||||
newRow[0] = maxID;
|
||||
newRow[1] = maxID;
|
||||
|
||||
@ -63,7 +63,7 @@ import java.util.UUID;
|
||||
import javax.swing.UIManager;
|
||||
|
||||
import org.jooq.ArrayRecord;
|
||||
import org.jooq.ContextDSL;
|
||||
import org.jooq.DSLContext;
|
||||
import org.jooq.DAO;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.ExecuteType;
|
||||
@ -492,7 +492,7 @@ public abstract class jOOQAbstractTest<
|
||||
|
||||
@Override
|
||||
public MockResult[] execute(MockExecuteContext context) throws SQLException {
|
||||
ContextDSL executor = Factory.using(c, getDialect());
|
||||
DSLContext executor = Factory.using(c, getDialect());
|
||||
|
||||
if (context.batchSingle()) {
|
||||
Query query = executor.query(context.sql(), new Object[context.batchBindings()[0].length]);
|
||||
@ -858,13 +858,13 @@ public abstract class jOOQAbstractTest<
|
||||
protected abstract Class<?> cLibrary();
|
||||
protected abstract Class<?> cSequences();
|
||||
protected abstract DataType<?>[] getCastableDataTypes();
|
||||
protected abstract ContextDSL create(Settings settings);
|
||||
protected abstract DSLContext create(Settings settings);
|
||||
|
||||
protected final Schema schema() {
|
||||
return create().map(TAuthor().getSchema());
|
||||
}
|
||||
|
||||
protected final ContextDSL create() {
|
||||
protected final DSLContext create() {
|
||||
String defaultSchema = System.getProperty("org.jooq.settings.defaultSchema", "");
|
||||
Boolean renderSchema = Boolean.valueOf(System.getProperty("org.jooq.settings.renderSchema", "true"));
|
||||
|
||||
@ -873,7 +873,7 @@ public abstract class jOOQAbstractTest<
|
||||
.withRenderMapping(new RenderMapping()
|
||||
.withDefaultSchema(defaultSchema));
|
||||
|
||||
ContextDSL create = create(settings);
|
||||
DSLContext create = create(settings);
|
||||
create.configuration().getExecuteListeners().add(new TestStatisticsListener());
|
||||
create.configuration().getExecuteListeners().add(new PrettyPrinter());
|
||||
create.configuration().getExecuteListeners().add(new LifecycleWatcherListener());
|
||||
|
||||
@ -41,14 +41,14 @@ package org.jooq.xtend
|
||||
*/
|
||||
import org.jooq.Constants
|
||||
|
||||
class ContextDSL extends Generators {
|
||||
class DSLContext extends Generators {
|
||||
|
||||
def static void main(String[] args) {
|
||||
val contextDSL = new ContextDSL();
|
||||
contextDSL.generateSelect();
|
||||
contextDSL.generateSelectDistinct();
|
||||
contextDSL.generateInsert();
|
||||
contextDSL.generateMerge();
|
||||
val ctx = new DSLContext();
|
||||
ctx.generateSelect();
|
||||
ctx.generateSelectDistinct();
|
||||
ctx.generateInsert();
|
||||
ctx.generateMerge();
|
||||
}
|
||||
|
||||
def generateSelect() {
|
||||
@ -73,7 +73,7 @@ class ContextDSL extends Generators {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(«FOR d : (1..degree) SEPARATOR ', '»Field«ENDFOR»)} instead.
|
||||
@ -105,8 +105,8 @@ class ContextDSL extends Generators {
|
||||
''');
|
||||
}
|
||||
|
||||
insert("org.jooq.ContextDSL", outAPI, "select");
|
||||
insert("org.jooq.impl.ContextDSLImpl", outImpl, "select");
|
||||
insert("org.jooq.DSLContext", outAPI, "select");
|
||||
insert("org.jooq.impl.DSLContextImpl", outImpl, "select");
|
||||
}
|
||||
|
||||
def generateSelectDistinct() {
|
||||
@ -131,7 +131,7 @@ class ContextDSL extends Generators {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(«FOR d : (1..degree) SEPARATOR ', '»Field«ENDFOR»)} instead.
|
||||
@ -163,8 +163,8 @@ class ContextDSL extends Generators {
|
||||
''');
|
||||
}
|
||||
|
||||
insert("org.jooq.ContextDSL", outAPI, "selectDistinct");
|
||||
insert("org.jooq.impl.ContextDSLImpl", outImpl, "selectDistinct");
|
||||
insert("org.jooq.DSLContext", outAPI, "selectDistinct");
|
||||
insert("org.jooq.impl.DSLContextImpl", outImpl, "selectDistinct");
|
||||
}
|
||||
|
||||
def generateInsert() {
|
||||
@ -203,8 +203,8 @@ class ContextDSL extends Generators {
|
||||
''');
|
||||
}
|
||||
|
||||
insert("org.jooq.ContextDSL", outAPI, "insert");
|
||||
insert("org.jooq.impl.ContextDSLImpl", outImpl, "insert");
|
||||
insert("org.jooq.DSLContext", outAPI, "insert");
|
||||
insert("org.jooq.impl.DSLContextImpl", outImpl, "insert");
|
||||
}
|
||||
|
||||
def generateMerge() {
|
||||
@ -249,7 +249,7 @@ class ContextDSL extends Generators {
|
||||
''');
|
||||
}
|
||||
|
||||
insert("org.jooq.ContextDSL", outAPI, "merge");
|
||||
insert("org.jooq.impl.ContextDSLImpl", outImpl, "merge");
|
||||
insert("org.jooq.DSLContext", outAPI, "merge");
|
||||
insert("org.jooq.impl.DSLContextImpl", outImpl, "merge");
|
||||
}
|
||||
}
|
||||
@ -68,7 +68,7 @@ class Factory extends Generators {
|
||||
* {@link «fieldOrRow»#in(Select)}, {@link «fieldOrRow»#equal(Select)} and other predicate
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* Unlike {@link Select} factory methods in the {@link ContextDSL} API, this
|
||||
* Unlike {@link Select} factory methods in the {@link DSLContext} API, this
|
||||
* creates an unattached, and thus not directly renderable or executable
|
||||
* <code>SELECT</code> statement. You can use this statement in two ways:
|
||||
* <ul>
|
||||
@ -89,7 +89,7 @@ class Factory extends Generators {
|
||||
* .orderBy(field2);
|
||||
* </pre></code>
|
||||
*
|
||||
* @see ContextDSL#select(Field...)
|
||||
* @see DSLContext#select(Field...)
|
||||
* @see #select(Field...)
|
||||
*/
|
||||
«generatedMethod»
|
||||
@ -123,7 +123,7 @@ class Factory extends Generators {
|
||||
* {@link «fieldOrRow»#in(Select)}, {@link «fieldOrRow»#equal(Select)} and other predicate
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* Unlike {@link Select} factory methods in the {@link ContextDSL} API, this
|
||||
* Unlike {@link Select} factory methods in the {@link DSLContext} API, this
|
||||
* creates an unattached, and thus not directly renderable or executable
|
||||
* <code>SELECT</code> statement. You can use this statement in two ways:
|
||||
* <ul>
|
||||
@ -144,7 +144,7 @@ class Factory extends Generators {
|
||||
* .orderBy(field2);
|
||||
* </pre></code>
|
||||
*
|
||||
* @see ContextDSL#selectDistinct(Field...)
|
||||
* @see DSLContext#selectDistinct(Field...)
|
||||
* @see #selectDistinct(Field...)
|
||||
*/
|
||||
«generatedMethod»
|
||||
|
||||
@ -4,7 +4,7 @@ class GenerateAll {
|
||||
def static void main(String[] args) {
|
||||
BetweenAndSteps::main(args);
|
||||
Conversions::main(args);
|
||||
ContextDSL::main(args);
|
||||
DSLContext::main(args);
|
||||
Factory::main(args);
|
||||
InsertDSL::main(args);
|
||||
MergeDSL::main(args);
|
||||
|
||||
@ -105,7 +105,7 @@ class InsertDSL extends Generators {
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, «(1..degree).join(", ", [e | 'Field'])»)}
|
||||
* {@link DSLContext#insertInto(Table, «(1..degree).join(", ", [e | 'Field'])»)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record«degree»<«TN(degree)»>> select);
|
||||
|
||||
@ -320,7 +320,7 @@ class MergeDSL extends Generators {
|
||||
* This variant of the <code>MERGE .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#mergeInto(Table, «(1..degree).join(', ', [e | 'Field'])»)}
|
||||
* {@link DSLContext#mergeInto(Table, «(1..degree).join(', ', [e | 'Field'])»)}
|
||||
*/
|
||||
@Support({ CUBRID, DB2, H2, HSQLDB, ORACLE, SQLSERVER, SYBASE })
|
||||
Merge<R> select(Select<? extends Record«degree»<«TN(degree)»>> select);
|
||||
|
||||
@ -42,13 +42,13 @@ import java.util.Map;
|
||||
import org.jooq.conf.Settings;
|
||||
|
||||
/**
|
||||
* A <code>Configuration</code> configures an {@link ContextDSL}, providing it
|
||||
* A <code>Configuration</code> configures an {@link DSLContext}, providing it
|
||||
* with information for query construction, rendering and execution.
|
||||
* <p>
|
||||
* A <code>Configuration</code> wraps all information elements that are
|
||||
* needed...
|
||||
* <ul>
|
||||
* <li>by an {@link ContextDSL} to construct {@link Query} objects</li>
|
||||
* <li>by an {@link DSLContext} to construct {@link Query} objects</li>
|
||||
* <li>by a {@link RenderContext} to render {@link Query} objects and
|
||||
* {@link QueryPart}s</li>
|
||||
* <li>by a {@link BindContext} to bind values to {@link Query} objects and
|
||||
|
||||
@ -75,13 +75,13 @@ import org.jooq.impl.Factory;
|
||||
* Apart from the {@link Factory}, this contextual DSL is the main entry point
|
||||
* for client code, to access jOOQ classes and functionality that are related to
|
||||
* {@link Query} execution. Unlike objects created through the
|
||||
* <code>Factory</code>, objects created from a <code>ContextDSL</code> will be
|
||||
* "attached" to the <code>ContextDSL</code>'s {@link #configuration()}, such
|
||||
* <code>Factory</code>, objects created from a <code>DSLContext</code> will be
|
||||
* "attached" to the <code>DSLContext</code>'s {@link #configuration()}, such
|
||||
* that they can be executed immediately in a fluent style. An example is given
|
||||
* here:
|
||||
* <p>
|
||||
* <code><pre>
|
||||
* ContextDSL create = Factory.using(connection, dialect);
|
||||
* DSLContext create = Factory.using(connection, dialect);
|
||||
*
|
||||
* // Immediately fetch results after constructing a query
|
||||
* create.selectFrom(MY_TABLE).where(MY_TABLE.ID.eq(1)).fetch();
|
||||
@ -102,7 +102,7 @@ import org.jooq.impl.Factory;
|
||||
* @see Configuration
|
||||
* @author Lukas Eder
|
||||
*/
|
||||
public interface ContextDSL {
|
||||
public interface DSLContext {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// XXX Configuration API
|
||||
@ -110,7 +110,7 @@ public interface ContextDSL {
|
||||
|
||||
/**
|
||||
* The <code>Configuration</code> referenced from this
|
||||
* <code>ContextDSL</code>.
|
||||
* <code>DSLContext</code>.
|
||||
*/
|
||||
Configuration configuration();
|
||||
|
||||
@ -1323,7 +1323,7 @@ public interface ContextDSL {
|
||||
* Create a new DSL select statement.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Collection)} instead.
|
||||
@ -1347,7 +1347,7 @@ public interface ContextDSL {
|
||||
* Create a new DSL select statement.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field...)} instead.
|
||||
@ -1378,7 +1378,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field)} instead.
|
||||
@ -1408,7 +1408,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field)} instead.
|
||||
@ -1438,7 +1438,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field)} instead.
|
||||
@ -1468,7 +1468,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field)} instead.
|
||||
@ -1498,7 +1498,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field)} instead.
|
||||
@ -1528,7 +1528,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1558,7 +1558,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1588,7 +1588,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1618,7 +1618,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1648,7 +1648,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1678,7 +1678,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1708,7 +1708,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1738,7 +1738,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1768,7 +1768,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1798,7 +1798,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1828,7 +1828,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1858,7 +1858,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1888,7 +1888,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1918,7 +1918,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1948,7 +1948,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -1978,7 +1978,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2008,7 +2008,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#select(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2035,7 +2035,7 @@ public interface ContextDSL {
|
||||
* Create a new DSL select statement.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Collection)} instead.
|
||||
@ -2059,7 +2059,7 @@ public interface ContextDSL {
|
||||
* Create a new DSL select statement.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field...)} instead.
|
||||
@ -2089,7 +2089,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field)} instead.
|
||||
@ -2119,7 +2119,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field)} instead.
|
||||
@ -2149,7 +2149,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field)} instead.
|
||||
@ -2179,7 +2179,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field)} instead.
|
||||
@ -2209,7 +2209,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field)} instead.
|
||||
@ -2239,7 +2239,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2269,7 +2269,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2299,7 +2299,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2329,7 +2329,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2359,7 +2359,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2389,7 +2389,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2419,7 +2419,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2449,7 +2449,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2479,7 +2479,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2509,7 +2509,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2539,7 +2539,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2569,7 +2569,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2599,7 +2599,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2629,7 +2629,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2659,7 +2659,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2689,7 +2689,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2719,7 +2719,7 @@ public interface ContextDSL {
|
||||
* building methods taking subselect arguments.
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectDistinct(Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)} instead.
|
||||
@ -2746,7 +2746,7 @@ public interface ContextDSL {
|
||||
* Create a new DSL select statement for constant <code>0</code> literal
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectZero()} instead.
|
||||
@ -2771,7 +2771,7 @@ public interface ContextDSL {
|
||||
* Create a new DSL select statement for constant <code>1</code> literal
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectOne()} instead.
|
||||
@ -2796,7 +2796,7 @@ public interface ContextDSL {
|
||||
* Create a new DSL select statement for <code>COUNT(*)</code>
|
||||
* <p>
|
||||
* This creates an attached, renderable and executable <code>SELECT</code>
|
||||
* statement from this {@link ContextDSL}. If you don't need to render or
|
||||
* statement from this {@link DSLContext}. If you don't need to render or
|
||||
* execute this <code>SELECT</code> statement (e.g. because you want to
|
||||
* create a subselect), consider using the static
|
||||
* {@link Factory#selectCount()} instead.
|
||||
@ -4269,7 +4269,7 @@ public interface ContextDSL {
|
||||
|
||||
/**
|
||||
* Convenience method to fetch the NEXTVAL for a sequence directly from this
|
||||
* {@link ContextDSL}'s underlying JDBC {@link Connection}
|
||||
* {@link DSLContext}'s underlying JDBC {@link Connection}
|
||||
*
|
||||
* @throws DataAccessException if something went wrong executing the query
|
||||
*/
|
||||
@ -4278,7 +4278,7 @@ public interface ContextDSL {
|
||||
|
||||
/**
|
||||
* Convenience method to fetch the CURRVAL for a sequence directly from this
|
||||
* {@link ContextDSL}'s underlying JDBC {@link Connection}
|
||||
* {@link DSLContext}'s underlying JDBC {@link Connection}
|
||||
*
|
||||
* @throws DataAccessException if something went wrong executing the query
|
||||
*/
|
||||
@ -54,7 +54,7 @@ import org.jooq.tools.StopWatchListener;
|
||||
* render, prepare, bind, execute, fetch steps.
|
||||
* <p>
|
||||
* <code>ExecuteListener</code> is a base type for loggers, debuggers,
|
||||
* profilers, data collectors that can be hooked into a jOOQ {@link ContextDSL}
|
||||
* profilers, data collectors that can be hooked into a jOOQ {@link DSLContext}
|
||||
* using the {@link Configuration#getExecuteListeners()} property, passing
|
||||
* <code>Settings</code> to
|
||||
* {@link Factory#using(java.sql.Connection, SQLDialect, Settings)}. jOOQ
|
||||
@ -248,10 +248,10 @@ import org.jooq.tools.StopWatchListener;
|
||||
* {@link StatementType#PREPARED_STATEMENT}</li>
|
||||
* <li>Used with {@link ResultQuery} of statement type
|
||||
* {@link StatementType#STATIC_STATEMENT}</li>
|
||||
* <li>Used with {@link ContextDSL#fetch(ResultSet)} or with
|
||||
* <li>Used with {@link DSLContext#fetch(ResultSet)} or with
|
||||
* {@link InsertResultStep#fetch()}</li>
|
||||
* <li>Used with {@link ContextDSL#batch(Query)}</li>
|
||||
* <li>Used with {@link ContextDSL#batch(Query[])}</li>
|
||||
* <li>Used with {@link DSLContext#batch(Query)}</li>
|
||||
* <li>Used with {@link DSLContext#batch(Query[])}</li>
|
||||
* <li>Used with a {@link Routine} standalone call</li>
|
||||
* </ol>
|
||||
* <p>
|
||||
|
||||
@ -1830,7 +1830,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#sign(Field)
|
||||
*/
|
||||
@ -1840,7 +1840,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#abs(Field)
|
||||
*/
|
||||
@ -1850,7 +1850,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#round(Field)
|
||||
*/
|
||||
@ -1860,7 +1860,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#round(Field, int)
|
||||
*/
|
||||
@ -1870,7 +1870,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#floor(Field)
|
||||
*/
|
||||
@ -1880,7 +1880,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#ceil(Field)
|
||||
*/
|
||||
@ -1890,7 +1890,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#sqrt(Field)
|
||||
*/
|
||||
@ -1900,7 +1900,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#exp(Field)
|
||||
*/
|
||||
@ -1910,7 +1910,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#ln(Field)
|
||||
*/
|
||||
@ -1920,7 +1920,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#log(Field, int)
|
||||
*/
|
||||
@ -1930,7 +1930,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#power(Field, Number)
|
||||
*/
|
||||
@ -1948,7 +1948,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#acos(Field)
|
||||
*/
|
||||
@ -1958,7 +1958,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#asin(Field)
|
||||
*/
|
||||
@ -1968,7 +1968,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#atan(Field)
|
||||
*/
|
||||
@ -1978,7 +1978,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#atan2(Field, Number)
|
||||
*/
|
||||
@ -1988,7 +1988,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#atan2(Field, Field)
|
||||
*/
|
||||
@ -1998,7 +1998,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#cos(Field)
|
||||
*/
|
||||
@ -2008,7 +2008,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#sin(Field)
|
||||
*/
|
||||
@ -2018,7 +2018,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#tan(Field)
|
||||
*/
|
||||
@ -2028,7 +2028,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#cot(Field)
|
||||
*/
|
||||
@ -2038,7 +2038,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#sinh(Field)
|
||||
*/
|
||||
@ -2048,7 +2048,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#cosh(Field)
|
||||
*/
|
||||
@ -2058,7 +2058,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#tanh(Field)
|
||||
*/
|
||||
@ -2068,7 +2068,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#coth(Field)
|
||||
*/
|
||||
@ -2078,7 +2078,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#deg(Field)
|
||||
*/
|
||||
@ -2088,7 +2088,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#rad(Field)
|
||||
*/
|
||||
@ -2098,7 +2098,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#count(Field)
|
||||
*/
|
||||
@ -2108,7 +2108,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#countDistinct(Field)
|
||||
*/
|
||||
@ -2118,7 +2118,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#max(Field)
|
||||
*/
|
||||
@ -2128,7 +2128,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#min(Field)
|
||||
*/
|
||||
@ -2138,7 +2138,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#sum(Field)
|
||||
*/
|
||||
@ -2148,7 +2148,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#avg(Field)
|
||||
*/
|
||||
@ -2158,7 +2158,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#median(Field)
|
||||
*/
|
||||
@ -2168,7 +2168,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#stddevPop(Field)
|
||||
*/
|
||||
@ -2178,7 +2178,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#stddevSamp(Field)
|
||||
*/
|
||||
@ -2188,7 +2188,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#varPop(Field)
|
||||
*/
|
||||
@ -2198,7 +2198,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#varSamp(Field)
|
||||
*/
|
||||
@ -2208,7 +2208,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#count(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2219,7 +2219,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#max(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2230,7 +2230,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#min(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2241,7 +2241,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#sum(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2252,7 +2252,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#avg(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2263,7 +2263,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#firstValue(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2274,7 +2274,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lastValue(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2285,7 +2285,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lead(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2296,7 +2296,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lead(Field, int)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2307,7 +2307,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lead(Field, int, Object)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2318,7 +2318,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lead(Field, int, Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2329,7 +2329,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lag(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2340,7 +2340,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lag(Field, int)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2351,7 +2351,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lag(Field, int, Object)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2362,7 +2362,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lag(Field, int, Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2373,7 +2373,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#stddevPop(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2384,7 +2384,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#stddevSamp(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2395,7 +2395,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#varPop(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2406,7 +2406,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#varSamp(Field)
|
||||
* @see AggregateFunction#over()
|
||||
@ -2417,7 +2417,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#upper(Field)
|
||||
*/
|
||||
@ -2427,7 +2427,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lower(Field)
|
||||
*/
|
||||
@ -2437,7 +2437,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#trim(Field)
|
||||
*/
|
||||
@ -2447,7 +2447,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#rtrim(Field)
|
||||
*/
|
||||
@ -2457,7 +2457,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#ltrim(Field)
|
||||
*/
|
||||
@ -2467,7 +2467,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#rpad(Field, Field)
|
||||
*/
|
||||
@ -2477,7 +2477,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#rpad(Field, int)
|
||||
*/
|
||||
@ -2487,7 +2487,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#rpad(Field, Field, Field)
|
||||
*/
|
||||
@ -2497,7 +2497,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#rpad(Field, int, char)
|
||||
*/
|
||||
@ -2507,7 +2507,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lpad(Field, Field)
|
||||
*/
|
||||
@ -2517,7 +2517,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lpad(Field, int)
|
||||
*/
|
||||
@ -2527,7 +2527,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lpad(Field, Field, Field)
|
||||
*/
|
||||
@ -2537,7 +2537,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#lpad(Field, int, char)
|
||||
*/
|
||||
@ -2547,7 +2547,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#repeat(Field, int)
|
||||
*/
|
||||
@ -2557,7 +2557,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#repeat(Field, Field)
|
||||
*/
|
||||
@ -2567,7 +2567,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#replace(Field, Field)
|
||||
*/
|
||||
@ -2577,7 +2577,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#replace(Field, String)
|
||||
*/
|
||||
@ -2587,7 +2587,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#replace(Field, Field, Field)
|
||||
*/
|
||||
@ -2597,7 +2597,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#replace(Field, String, String)
|
||||
*/
|
||||
@ -2607,7 +2607,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#position(Field, String)
|
||||
*/
|
||||
@ -2617,7 +2617,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#position(Field, Field)
|
||||
*/
|
||||
@ -2627,7 +2627,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#ascii(Field)
|
||||
*/
|
||||
@ -2637,7 +2637,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#concat(Field...)
|
||||
*/
|
||||
@ -2647,7 +2647,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#concat(String...)
|
||||
*/
|
||||
@ -2657,7 +2657,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#substring(Field, int)
|
||||
*/
|
||||
@ -2667,7 +2667,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#substring(Field, Field)
|
||||
*/
|
||||
@ -2677,7 +2677,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#substring(Field, int, int)
|
||||
*/
|
||||
@ -2687,7 +2687,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#substring(Field, Field, Field)
|
||||
*/
|
||||
@ -2697,7 +2697,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#length(Field)
|
||||
*/
|
||||
@ -2707,7 +2707,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#charLength(Field)
|
||||
*/
|
||||
@ -2717,7 +2717,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#bitLength(Field)
|
||||
*/
|
||||
@ -2727,7 +2727,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#octetLength(Field)
|
||||
*/
|
||||
@ -2737,7 +2737,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#extract(Field, DatePart)
|
||||
*/
|
||||
@ -2747,7 +2747,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#greatest(Field, Field...)
|
||||
*/
|
||||
@ -2757,7 +2757,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#greatest(Field, Field...)
|
||||
*/
|
||||
@ -2767,7 +2767,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#least(Field, Field...)
|
||||
*/
|
||||
@ -2777,7 +2777,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#least(Field, Field...)
|
||||
*/
|
||||
@ -2787,7 +2787,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#nvl(Field, Object)
|
||||
*/
|
||||
@ -2797,7 +2797,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#nvl(Field, Field)
|
||||
*/
|
||||
@ -2807,7 +2807,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#nvl2(Field, Object, Object)
|
||||
*/
|
||||
@ -2817,7 +2817,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#nvl2(Field, Field, Field)
|
||||
*/
|
||||
@ -2827,7 +2827,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#nullif(Field, Object)
|
||||
*/
|
||||
@ -2837,7 +2837,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#nullif(Field, Field)
|
||||
*/
|
||||
@ -2847,7 +2847,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#decode(Object, Object, Object)
|
||||
*/
|
||||
@ -2857,7 +2857,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#decode(Object, Object, Object, Object...)
|
||||
*/
|
||||
@ -2867,7 +2867,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#decode(Field, Field, Field)
|
||||
*/
|
||||
@ -2877,7 +2877,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#decode(Field, Field, Field, Field...)
|
||||
*/
|
||||
@ -2887,7 +2887,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#coalesce(Object, Object...)
|
||||
*/
|
||||
@ -2897,7 +2897,7 @@ public interface Field<T> extends GroupField {
|
||||
/**
|
||||
* This method is part of the pre-2.0 API. This API is maintained for
|
||||
* backwards-compatibility. It may be removed in the future. Consider using
|
||||
* equivalent methods from {@link ContextDSL}
|
||||
* equivalent methods from {@link DSLContext}
|
||||
*
|
||||
* @see Factory#coalesce(Field, Field...)
|
||||
*/
|
||||
|
||||
@ -77,7 +77,7 @@ public interface InsertOnDuplicateStep<R extends Record> extends InsertFinalStep
|
||||
* <li>The <code>INSERT</code> statement's table is a
|
||||
* {@link Table} with a {@link Table#getPrimaryKey()}</li>
|
||||
* <li>The RDBMS supports the <code>MERGE</code> clause (see
|
||||
* {@link ContextDSL#mergeInto(Table)}).</li>
|
||||
* {@link DSLContext#mergeInto(Table)}).</li>
|
||||
* </ul>
|
||||
* <p>
|
||||
* These are the dialects that fulfill the above requirements:
|
||||
|
||||
@ -124,8 +124,8 @@ public interface InsertSetStep<R extends Record> {
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement does not
|
||||
* allow for specifying a subset of the fields inserted into. It will insert
|
||||
* into all fields of the table specified in the <code>INTO</code> clause.
|
||||
* Use {@link ContextDSL#insertInto(Table, Field...)} or
|
||||
* {@link ContextDSL#insertInto(Table, Collection)} instead, to
|
||||
* Use {@link DSLContext#insertInto(Table, Field...)} or
|
||||
* {@link DSLContext#insertInto(Table, Collection)} instead, to
|
||||
* define a field set for insertion.
|
||||
*/
|
||||
@Support
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep1<R extends Record, T1> extends InsertOnDuplica
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record1<T1>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep10<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep11<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep12<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep13<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep14<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep15<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep16<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep17<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep18<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record18<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep19<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record19<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep2<R extends Record, T1, T2> extends InsertOnDup
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record2<T1, T2>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep20<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record20<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep21<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record21<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep22<R extends Record, T1, T2, T3, T4, T5, T6, T7
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record22<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep3<R extends Record, T1, T2, T3> extends InsertO
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record3<T1, T2, T3>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep4<R extends Record, T1, T2, T3, T4> extends Ins
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record4<T1, T2, T3, T4>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep5<R extends Record, T1, T2, T3, T4, T5> extends
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record5<T1, T2, T3, T4, T5>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep6<R extends Record, T1, T2, T3, T4, T5, T6> ext
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record6<T1, T2, T3, T4, T5, T6>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep7<R extends Record, T1, T2, T3, T4, T5, T6, T7>
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record7<T1, T2, T3, T4, T5, T6, T7>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep8<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record8<T1, T2, T3, T4, T5, T6, T7, T8>> select);
|
||||
|
||||
@ -83,7 +83,7 @@ public interface InsertValuesStep9<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#insertInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<? extends Record9<T1, T2, T3, T4, T5, T6, T7, T8, T9>> select);
|
||||
|
||||
@ -82,8 +82,8 @@ public interface InsertValuesStepN<R extends Record> extends InsertOnDuplicateSt
|
||||
* This variant of the <code>INSERT .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#insertInto(Table, Field...)} or
|
||||
* {@link ContextDSL#insertInto(Table, Collection)}
|
||||
* {@link DSLContext#insertInto(Table, Field...)} or
|
||||
* {@link DSLContext#insertInto(Table, Collection)}
|
||||
*/
|
||||
@Support
|
||||
Insert<R> select(Select<?> select);
|
||||
|
||||
@ -88,7 +88,7 @@ public interface MergeValuesStep1<R extends Record, T1> {
|
||||
* This variant of the <code>MERGE .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#mergeInto(Table, Field)}
|
||||
* {@link DSLContext#mergeInto(Table, Field)}
|
||||
*/
|
||||
@Support({ CUBRID, DB2, H2, HSQLDB, ORACLE, SQLSERVER, SYBASE })
|
||||
Merge<R> select(Select<? extends Record1<T1>> select);
|
||||
|
||||
@ -88,7 +88,7 @@ public interface MergeValuesStep10<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* This variant of the <code>MERGE .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support({ CUBRID, DB2, H2, HSQLDB, ORACLE, SQLSERVER, SYBASE })
|
||||
Merge<R> select(Select<? extends Record10<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>> select);
|
||||
|
||||
@ -88,7 +88,7 @@ public interface MergeValuesStep11<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* This variant of the <code>MERGE .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support({ CUBRID, DB2, H2, HSQLDB, ORACLE, SQLSERVER, SYBASE })
|
||||
Merge<R> select(Select<? extends Record11<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>> select);
|
||||
|
||||
@ -88,7 +88,7 @@ public interface MergeValuesStep12<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* This variant of the <code>MERGE .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support({ CUBRID, DB2, H2, HSQLDB, ORACLE, SQLSERVER, SYBASE })
|
||||
Merge<R> select(Select<? extends Record12<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>> select);
|
||||
|
||||
@ -88,7 +88,7 @@ public interface MergeValuesStep13<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* This variant of the <code>MERGE .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support({ CUBRID, DB2, H2, HSQLDB, ORACLE, SQLSERVER, SYBASE })
|
||||
Merge<R> select(Select<? extends Record13<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>> select);
|
||||
|
||||
@ -88,7 +88,7 @@ public interface MergeValuesStep14<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* This variant of the <code>MERGE .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support({ CUBRID, DB2, H2, HSQLDB, ORACLE, SQLSERVER, SYBASE })
|
||||
Merge<R> select(Select<? extends Record14<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>> select);
|
||||
|
||||
@ -88,7 +88,7 @@ public interface MergeValuesStep15<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* This variant of the <code>MERGE .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support({ CUBRID, DB2, H2, HSQLDB, ORACLE, SQLSERVER, SYBASE })
|
||||
Merge<R> select(Select<? extends Record15<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>> select);
|
||||
|
||||
@ -88,7 +88,7 @@ public interface MergeValuesStep16<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* This variant of the <code>MERGE .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support({ CUBRID, DB2, H2, HSQLDB, ORACLE, SQLSERVER, SYBASE })
|
||||
Merge<R> select(Select<? extends Record16<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>> select);
|
||||
|
||||
@ -88,7 +88,7 @@ public interface MergeValuesStep17<R extends Record, T1, T2, T3, T4, T5, T6, T7,
|
||||
* This variant of the <code>MERGE .. SELECT</code> statement expects a
|
||||
* select returning exactly as many fields as specified previously in the
|
||||
* <code>INTO</code> clause:
|
||||
* {@link ContextDSL#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
* {@link DSLContext#mergeInto(Table, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field, Field)}
|
||||
*/
|
||||
@Support({ CUBRID, DB2, H2, HSQLDB, ORACLE, SQLSERVER, SYBASE })
|
||||
Merge<R> select(Select<? extends Record17<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17>> select);
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user