Class LiteralExpressionStatement

java.lang.Object
com.invirgance.convirgance.jdbc.sql.LiteralExpressionStatement
All Implemented Interfaces:
NamedSchema, ExpressionStatement, SQLStatement

public class LiteralExpressionStatement extends Object implements ExpressionStatement
Author:
jbanes
  • Constructor Details

  • Method Details

    • getParent

      public SQLStatement getParent()
      Description copied from interface: SQLStatement
      If this statement is part of a larger statement, this returns the parent statement. Null is returned if this is the top-level statement.
      Specified by:
      getParent in interface SQLStatement
      Returns:
      the parent statement or null if there is no parent
    • setParent

      public void setParent(SQLStatement parent)
      Specified by:
      setParent in interface SQLStatement
    • getName

      public String getName()
      Description copied from interface: NamedSchema
      Get the schema name of this database object
      Specified by:
      getName in interface NamedSchema
      Returns:
      name of the object with exact database capitalization
    • getQuotedName

      public String getQuotedName()
      Description copied from interface: NamedSchema
      Get the schema name of this database object quoted for use in a SQL statement
      Specified by:
      getQuotedName in interface NamedSchema
      Returns:
      name of the object quoted for use in a SQL statement
    • render

      public SQLRenderer render(SQLRenderer renderer)
      Specified by:
      render in interface SQLStatement
    • toString

      public String toString()
      Overrides:
      toString in class Object