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

org.jooq.meta.ResultQueryDatabase Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/*
 * 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.meta;

import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.List;

import org.jooq.Internal;
import org.jooq.Meta;
import org.jooq.Record12;
import org.jooq.Record6;
import org.jooq.ResultQuery;

/**
 * An interface for all {@link AbstractDatabase} implementations that can
 * produce {@link ResultQuery} objects to query meta data.
 * 

* These queries will be used to generate some internal queries in the core * library's {@link Meta} API. The return types of the various methods are * subject to change and should not be relied upon. * * @author Lukas Eder */ @Internal public interface ResultQueryDatabase extends Database { /** * A query that produces primary keys for a set of input schemas. *

* The resulting columns are: *

    *
  1. Catalog name
  2. *
  3. Schema name
  4. *
  5. Table name
  6. *
  7. Constraint name
  8. *
  9. Column name
  10. *
  11. Column sequence
  12. *
*/ @Internal ResultQuery> primaryKeys(List schemas); /** * A query that produces (non-primary) unique keys for a set of input * schemas. *

* The resulting columns are: *

    *
  1. Catalog name
  2. *
  3. Schema name
  4. *
  5. Table name
  6. *
  7. Constraint name
  8. *
  9. Column name
  10. *
  11. Column sequence
  12. *
*/ @Internal ResultQuery> uniqueKeys(List schemas); /** * A query that produces sequences for a set of input schemas. *

* The resulting columns are: *

    *
  1. Catalog name
  2. *
  3. Schema name
  4. *
  5. Sequence name
  6. *
  7. Data type name
  8. *
  9. Data type precision
  10. *
  11. Data type scale
  12. *
  13. Start value
  14. *
  15. Increment
  16. *
  17. Min value
  18. *
  19. Max value
  20. *
  21. Cycle
  22. *
  23. Cache
  24. *
*/ @Internal ResultQuery> sequences(List schemas); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy