Tabnine Logo
DatabasePlatform.isSelectCountWithAlias
Code IndexAdd Tabnine to your IDE (free)

How to use
isSelectCountWithAlias
method
in
com.avaje.ebean.config.dbplatform.DatabasePlatform

Best Java code snippets using com.avaje.ebean.config.dbplatform.DatabasePlatform.isSelectCountWithAlias (Showing top 3 results out of 315)

origin: org.avaje.ebean/ebean

/**
 * Create the SqlGenSelect.
 */
CQueryBuilder(DatabasePlatform dbPlatform, Binder binder, CQueryHistorySupport historySupport, CQueryDraftSupport draftSupport) {
 this.dbPlatform = dbPlatform;
 this.binder = binder;
 this.draftSupport = draftSupport;
 this.historySupport = historySupport;
 this.tableAliasPlaceHolder = dbPlatform.getTableAliasPlaceHolder();
 this.columnAliasPrefix = dbPlatform.getColumnAliasPrefix();
 this.sqlLimiter = dbPlatform.getSqlLimiter();
 this.rawSqlHandler = new CQueryBuilderRawSql(sqlLimiter, dbPlatform);
 this.selectCountWithAlias = dbPlatform.isSelectCountWithAlias();
}
origin: org.avaje/ebean

/**
 * Create the SqlGenSelect.
 */
public CQueryBuilder(BackgroundExecutor backgroundExecutor, DatabasePlatform dbPlatform, Binder binder) {
 this.backgroundExecutor = backgroundExecutor;
 this.binder = binder;
 this.tableAliasPlaceHolder = GlobalProperties.get("ebean.tableAliasPlaceHolder", "${ta}");
 this.columnAliasPrefix = GlobalProperties.get("ebean.columnAliasPrefix", "c");
 this.sqlSelectBuilder = new RawSqlSelectClauseBuilder(dbPlatform, binder);
 this.sqlLimiter = dbPlatform.getSqlLimiter();
 this.rawSqlHandler = new CQueryBuilderRawSql(sqlLimiter, dbPlatform);
 this.selectCountWithAlias = dbPlatform.isSelectCountWithAlias();
 this.dbPlatform = dbPlatform;
}
origin: org.avaje.ebeanorm/avaje-ebeanorm-server

/**
 * Create the SqlGenSelect.
 */
public CQueryBuilder(BackgroundExecutor backgroundExecutor, DatabasePlatform dbPlatform, Binder binder) {
 this.backgroundExecutor = backgroundExecutor;
 this.binder = binder;
 this.tableAliasPlaceHolder = GlobalProperties.get("ebean.tableAliasPlaceHolder", "${ta}");
 this.columnAliasPrefix = GlobalProperties.get("ebean.columnAliasPrefix", "c");
 this.sqlSelectBuilder = new RawSqlSelectClauseBuilder(dbPlatform, binder);
 this.sqlLimiter = dbPlatform.getSqlLimiter();
 this.rawSqlHandler = new CQueryBuilderRawSql(sqlLimiter, dbPlatform);
 this.selectCountWithAlias = dbPlatform.isSelectCountWithAlias();
 this.dbPlatform = dbPlatform;
}
com.avaje.ebean.config.dbplatformDatabasePlatformisSelectCountWithAlias

Javadoc

Set to true if select count against anonymous view requires an alias.

Popular methods of DatabasePlatform

  • completeSql
  • convertQuotedIdentifiers
    Convert backticks to the platform specific open quote and close quote Specific plugins may implement
  • getCloseQuote
    Return the close quote for quoted identifiers.
  • getDbDdlSyntax
    Return the DDL syntax for this platform.
  • getOpenQuote
    Return the open quote for quoted identifiers.
  • <init>
    Instantiates a new database platform.
  • createSequenceIdGenerator
    Return a DB Sequence based IdGenerator.
  • getBlobDbType
    Return the data type that should be used for Blob. This is typically Types.BLOB but for Postgres is
  • getBooleanDbType
    Return the JDBC type used to store booleans.
  • getClobDbType
    Return the data type that should be used for Clob. This is typically Types.CLOB but for Postgres is
  • getDbEncrypt
    Return the DbEncrypt handler for this DB platform.
  • getDbIdentity
    Return the DB identity/sequence features for this platform.
  • getDbEncrypt,
  • getDbIdentity,
  • getDbTypeMap,
  • getName,
  • getSqlLimiter,
  • isIdInExpandedForm,
  • isTreatEmptyStringsAsNull,
  • setDbEncrypt,
  • withForUpdate

Popular in Java

  • Reactive rest calls using spring rest template
  • findViewById (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Collectors (java.util.stream)
  • Option (scala)
  • Best plugins for Eclipse
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