All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.UpdateSetFirstStep Maven / Gradle / Ivy

There is a newer version: 0.41.11
Show newest version
/*
 * Copyright (c) 2009-2016, Data Geekery GmbH (http://www.datageekery.com)
 * All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Other licenses:
 * -----------------------------------------------------------------------------
 * Commercial licenses for this work are available. These replace the above
 * ASL 2.0 and offer limited warranties, support, maintenance, and commercial
 * database integrations.
 *
 * For more information, please visit: http://www.jooq.org/licenses
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */
package org.jooq;

// ...
import static org.jooq.SQLDialect.H2;
// ...
import static org.jooq.SQLDialect.HSQLDB;
// ...
// ...
import static org.jooq.SQLDialect.POSTGRES;
import static org.jooq.SQLDialect.POSTGRES_9_5;

import javax.annotation.Generated;

/**
 * This type is used for the {@link Update}'s DSL API.
 * 

* Example:

 * using(configuration)
 *       .update(table)
 *       .set(field1, value1)
 *       .set(field2, value2)
 *       .where(field1.greaterThan(100))
 *       .execute();
 * 
* * @author Lukas Eder */ @Generated("This class was generated using jOOQ-tools") public interface UpdateSetFirstStep extends UpdateSetStep { /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row1 row, Row1 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row2 row, Row2 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row3 row, Row3 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row4 row, Row4 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row5 row, Row5 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row6 row, Row6 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row7 row, Row7 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row8 row, Row8 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row9 row, Row9 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row10 row, Row10 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row11 row, Row11 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row12 row, Row12 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row13 row, Row13 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row14 row, Row14 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row15 row, Row15 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row16 row, Row16 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row17 row, Row17 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row18 row, Row18 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row19 row, Row19 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row20 row, Row20 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row21 row, Row21 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(Row22 row, Row22 value); /** * Specify a multi-column set clause for the UPDATE statement. *

* This is emulated using a subquery for the value, where row * value expressions aren't supported. */ @Support({ H2, HSQLDB, POSTGRES }) UpdateFromStep set(RowN row, RowN value); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row1 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row2 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row3 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row4 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row5 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row6 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row7 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row8 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row9 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row10 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row11 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row12 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row13 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row14 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row15 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row16 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row17 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row18 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row19 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row20 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row21 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(Row22 row, Select> select); /** * Specify a multi-column set clause for the UPDATE statement. */ @Support({ H2, HSQLDB, POSTGRES_9_5 }) UpdateFromStep set(RowN row, Select select); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy