Tabnine Logo
SchemaUtils.generateCreateSchemaDDL
Code IndexAdd Tabnine to your IDE (free)

How to use
generateCreateSchemaDDL
method
in
uk.ac.ebi.intact.core.util.SchemaUtils

Best Java code snippets using uk.ac.ebi.intact.core.util.SchemaUtils.generateCreateSchemaDDL (Showing top 10 results out of 315)

origin: uk.ac.ebi.intact.core/intact-core-readonly

/**
 * Generates the DDL schema for PostgreSQL.
 * @return an array containing the SQL statements
 */
public static String[] generateCreateSchemaDDLForPostgreSQL() {
  return generateCreateSchemaDDL(PostgreSQLDialect.class.getName());
}
origin: uk.ac.ebi.intact.core/intact-core-readonly

/**
 * Generates the DDL schema for HSQL DB.
 * @return an array containing the SQL statements
 */
public static String[] generateCreateSchemaDDLForHSQL() {
  return generateCreateSchemaDDL(HSQLDialect.class.getName());
}
origin: uk.ac.ebi.intact.core/intact-core

/**
 * Generates the DDL schema for HSQL DB.
 * @return an array containing the SQL statements
 */
public static String[] generateCreateSchemaDDLForH2() {
  return generateCreateSchemaDDL(H2Dialect.class.getName());
}
origin: uk.ac.ebi.intact.core/intact-core

/**
 * Generates the DDL schema for PostgreSQL.
 * @return an array containing the SQL statements
 */
public static String[] generateCreateSchemaDDLForPostgreSQL() {
  return generateCreateSchemaDDL(PostgreSQLDialect.class.getName());
}
origin: uk.ac.ebi.intact.core/intact-core

/**
 * Generates the DDL schema for HSQL DB.
 * @return an array containing the SQL statements
 */
public static String[] generateCreateSchemaDDLForHSQL() {
  return generateCreateSchemaDDL(HSQLDialect.class.getName());
}
origin: uk.ac.ebi.intact.core/intact-core-readonly

/**
 * Generates the DDL schema for Oracle 9i.
 * @return an array containing the SQL statements
 */
public static String[] generateCreateSchemaDDLForOracle() {
  return generateCreateSchemaDDL(Oracle9iDialect.class.getName());
}
origin: uk.ac.ebi.intact.core/intact-core

/**
 * Generates the DDL schema for Oracle 9i.
 * @return an array containing the SQL statements
 */
public static String[] generateCreateSchemaDDLForOracle() {
  return generateCreateSchemaDDL(Oracle9iDialect.class.getName());
}
origin: uk.ac.ebi.intact/intact-core

/**
 * Generates the DDL schema for Oracle 9i
 * @return an array containing the SQL statements
 */
public static String[] generateCreateSchemaDDLForOracle() {
  return generateCreateSchemaDDL(Oracle9Dialect.class.getName());
}
origin: uk.ac.ebi.intact/intact-core

/**
 * Generates the DDL schema for PostgreSQL
 * @return an array containing the SQL statements
 */
public static String[] generateCreateSchemaDDLForPostgreSQL() {
  return generateCreateSchemaDDL(PostgreSQLDialect.class.getName());
}
origin: uk.ac.ebi.intact.core/intact-core-readonly

/**
 * Generates the DDL schema for HSQL DB.
 * @return an array containing the SQL statements
 */
public static String[] generateCreateSchemaDDLForH2() {
  return generateCreateSchemaDDL(H2Dialect.class.getName());
}
uk.ac.ebi.intact.core.utilSchemaUtilsgenerateCreateSchemaDDL

Javadoc

Generates the DDL schema

Popular methods of SchemaUtils

  • createSchema
    Creates a schema
  • dropSchema
    Drops the current schema, emptying the database
  • generateDropSchemaDDL
    Generates the DDL schema
  • resetSchema
    Drops and creates the schema. Beware that it commits transactions
  • addDelimiters
  • createConfiguration
  • generateUpdateSchemaDDL
  • newSchemaExport

Popular in Java

  • Making http post requests using okhttp
  • startActivity (Activity)
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now