Tabnine Logo
Expression.getTableName
Code IndexAdd Tabnine to your IDE (free)

How to use
getTableName
method
in
org.h2.expression.Expression

Best Java code snippets using org.h2.expression.Expression.getTableName (Showing top 12 results out of 315)

origin: com.h2database/h2

@Override
public String getTableName(int i) {
  return expressions[i].getTableName();
}
origin: com.h2database/h2

@Override
public String getTableName() {
  if (aliasColumnName) {
    return super.getTableName();
  }
  return expr.getTableName();
}
origin: com.h2database/h2

@Override
public String getTableName(int i) {
  return expressions[i].getTableName();
}
origin: com.h2database/h2

      args[0].getTableName() + "." + args[0].getColumnName());
  break;
case SIGNAL: {
origin: com.eventsourcing/h2

@Override
public String getTableName() {
  if (aliasColumnName) {
    return super.getTableName();
  }
  return expr.getTableName();
}
origin: org.wowtools/h2

@Override
public String getTableName() {
  if (aliasColumnName) {
    return super.getTableName();
  }
  return expr.getTableName();
}
origin: com.h2database/com.springsource.org.h2

public String getTableName() {
  if (SysProperties.ALIAS_COLUMN_NAME) {
    return expr.getTableName();
  } else {
    return super.getTableName();
  }
}
origin: org.wowtools/h2

@Override
public String getTableName(int i) {
  return expressions[i].getTableName();
}
origin: com.eventsourcing/h2

@Override
public String getTableName(int i) {
  return expressions[i].getTableName();
}
origin: com.h2database/com.springsource.org.h2

public String getTableName(int i) {
  return expressions[i].getTableName();
}
origin: org.wowtools/h2

      args[0].getTableName() + "." + args[0].getColumnName());
  break;
default:
origin: com.eventsourcing/h2

case VALUES:
  result = session.getVariable(args[0].getSchemaName() + "." +
      args[0].getTableName() + "." + args[0].getColumnName());
  break;
default:
org.h2.expressionExpressiongetTableName

Javadoc

Get the table name, or null

Popular methods of Expression

  • getAlias
    Get the alias name of a column or SQL expression if it is not an aliased expression.
  • getDisplaySize
    Get the display size of this expression.
  • getNonAliasExpression
    Returns the main expression, skipping aliases.
  • getNotIfPossible
    If it is possible, return the negated expression. This is used to optimize NOT expressions: NOT ID>1
  • getPrecision
    Get the precision of this expression.
  • getScale
    Get the scale of this expression.
  • getType
    Return the data type. The data type may not be known before the optimization phase.
  • getValue
    Return the resulting value for the current row.
  • isConstant
    Check if this expression will always return the same value.
  • addFilterConditions
    Add conditions to a table filter if they can be evaluated.
  • createIndexConditions
    Create index conditions if possible and attach them to the table filter.
  • getBooleanValue
    Get the value in form of a boolean expression. Returns true or false. In this database, everything c
  • createIndexConditions,
  • getBooleanValue,
  • getColumnName,
  • getCost,
  • getNullable,
  • getSQL,
  • getSchemaName,
  • getTableAlias,
  • isAutoIncrement

Popular in Java

  • Start an intent from android
  • getExternalFilesDir (Context)
  • getSupportFragmentManager (FragmentActivity)
  • compareTo (BigDecimal)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • JPanel (javax.swing)
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top 12 Jupyter Notebook extensions
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