Java Doc for DMLModStatementNode.java in  » Database-DBMS » db-derby-10.2 » org » apache » derby » impl » sql » compile » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database DBMS » db derby 10.2 » org.apache.derby.impl.sql.compile 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.derby.impl.sql.compile.QueryTreeNode
      org.apache.derby.impl.sql.compile.StatementNode
         org.apache.derby.impl.sql.compile.DMLStatementNode
            org.apache.derby.impl.sql.compile.DMLModStatementNode

All known Subclasses:   org.apache.derby.impl.sql.compile.InsertNode,  org.apache.derby.impl.sql.compile.DeleteNode,  org.apache.derby.impl.sql.compile.UpdateNode,
DMLModStatementNode
abstract class DMLModStatementNode extends DMLStatementNode (Code)
A DMLStatement for a table modification: to wit, INSERT UPDATE or DELETE.
author:
   Jamie


Field Summary
protected  int[][]fkColArrays
    
protected  ColumnDescriptorList[]fkColDescriptors
    
protected  long[]fkIndexConglomNumbers
    
protected  FKInfo[]fkInfo
    
protected  int[]fkRefActions
    
protected  String[]fkTableNames
    
protected  HashtablegraphHashTable
    
public  long[]indexConglomerateNumbers
    
public  String[]indexNames
    
public  IndexRowGenerator[]indicesToMaintain
    
protected  booleanisDependentTable
    
protected  intlockMode
    
protected  ConstraintDescriptorListrelevantCdl
    
protected  GenericDescriptorListrelevantTriggers
    
protected  ResultColumnListresultColumnList
    
protected  TableNamesynonymTableName
    
public  TableDescriptortargetTableDescriptor
    
protected  TableNametargetTableName
    
protected  FromVTItargetVTI
    
protected  TriggerInfotriggerInfo
    


Method Summary
protected  voidadjustDeferredFlag(boolean adjustment)
    
public  voidbindCheckConstraint(NodeFactory nodeFactory, TableDescriptor targetTableDescriptor, ResultColumnList sourceRCL, ValueNode checkConstraint)
    
public  ValueNodebindConstraints(DataDictionary dataDictionary, NodeFactory nodeFactory, TableDescriptor targetTableDescriptor, Dependent dependent, ResultColumnList sourceRCL, int[] changedColumnIds, FormatableBitSet readColsBitSet, boolean skipCheckConstraints, boolean includeTriggers)
     Gets and binds all the constraints for an INSERT/UPDATE/DELETE. First finds the constraints that are relevant to this node. This is done by calling getAllRelevantConstriants().
public  voidgenerateCheckConstraints(ValueNode checkConstraints, ExpressionClassBuilder ecb, MethodBuilder mb)
     Generate the code to evaluate a tree of CHECK CONSTRAINTS.
public  MethodBuildergenerateCheckConstraints(ValueNode checkConstraints, ExpressionClassBuilder ecb)
     Generate a method to evaluate a tree of CHECK CONSTRAINTS.
protected  voidgenerateCodeForTemporaryTable(ActivationClassBuilder acb, MethodBuilder mb)
     If the DML is on a temporary table, generate the code to mark temporary table as modified in the current UOW.
protected  voidgetAffectedIndexes(TableDescriptor td, ResultColumnList updatedColumns, FormatableBitSet colBitSet)
     Get the list of indexes that must be updated by this DML statement. WARNING: As a side effect, it creates dependencies on those indexes.
Parameters:
  td - The table descriptor for the table being updated
Parameters:
  updatedColumns - The updated column list.
protected  ConstraintDescriptorListgetAllRelevantConstraints(DataDictionary dd, TableDescriptor td, boolean skipCheckConstraints, int[] changedColumnIds)
    
protected  GenericDescriptorListgetAllRelevantTriggers(DataDictionary dd, TableDescriptor td, int[] changedColumnIds, boolean includeTriggers)
    
public  ValueNodegetCheckConstraints()
    
public  FKInfo[]getFKInfo()
     Return the FKInfo structure.
public static  int[]getReadColMap(int column_map_length, FormatableBitSet readColsBitSet)
     Get a map to efficiently find heap columns from a compressed set of read columns.
protected  voidgetResultColumnList()
     Get and bind the ResultColumnList representing the columns in the target table, given the table's name.
protected  FromBaseTablegetResultColumnList(ResultColumnList inputRcl)
     Get and bind the ResultColumnList representing the columns in the target table, given the table's name.
public  SchemaDescriptorgetSchemaDescriptor()
     Get a schema descriptor for the given table.
public  TriggerInfogetTriggerInfo()
     Return the TriggerInfo structure.
static  voidgetXAffectedIndexes(TableDescriptor baseTable, ResultColumnList updatedColumns, FormatableBitSet colBitSet, Vector conglomVector)
     Marks which indexes are affected by an UPDATE of the desired shape. Is passed a list of updated columns.
protected  booleanhasCheckConstraints(DataDictionary dd, TableDescriptor td)
     Determine whether or not there are check constraints on the specified table.
public  voidinit(Object resultSet)
    
public  voidinit(Object resultSet, Object statementType)
    
public  booleanisAtomic()
     INSERT/UPDATE/DELETE are always atomic.
protected  voidmarkAffectedIndexes(Vector affectedConglomerates)
    
public  voidnormalizeSynonymColumns(ResultColumnList rcl, TableName targetTableName)
     Normalize synonym column references to have the name of the base table.
public  QueryTreeNodeoptimize()
     Generate an optimized QueryTree from a bound QueryTree.
public  ValueNodeparseCheckConstraint(String checkConstraintText, TableDescriptor td)
     Parse a check constraint and turn it into a query tree.
public  booleanrequiresDeferredProcessing()
     Does this DML Node require deferred processing? Set to true if we have triggers or referential constraints that need deferred processing.
public  voidsetRefActionInfo(long fkIndexConglomId, int[] fkColArray, String parentResultSetId, boolean dependentScan)
    
 voidsetTarget(QueryTreeNode targetName)
    
public  StringstatementToString()
    
 voidverifyTargetTable()
     Verify the target table.

Field Detail
fkColArrays
protected int[][] fkColArrays(Code)



fkColDescriptors
protected ColumnDescriptorList[] fkColDescriptors(Code)



fkIndexConglomNumbers
protected long[] fkIndexConglomNumbers(Code)



fkInfo
protected FKInfo[] fkInfo(Code)



fkRefActions
protected int[] fkRefActions(Code)



fkTableNames
protected String[] fkTableNames(Code)



graphHashTable
protected Hashtable graphHashTable(Code)



indexConglomerateNumbers
public long[] indexConglomerateNumbers(Code)



indexNames
public String[] indexNames(Code)



indicesToMaintain
public IndexRowGenerator[] indicesToMaintain(Code)



isDependentTable
protected boolean isDependentTable(Code)



lockMode
protected int lockMode(Code)



relevantCdl
protected ConstraintDescriptorList relevantCdl(Code)



relevantTriggers
protected GenericDescriptorList relevantTriggers(Code)



resultColumnList
protected ResultColumnList resultColumnList(Code)



synonymTableName
protected TableName synonymTableName(Code)



targetTableDescriptor
public TableDescriptor targetTableDescriptor(Code)



targetTableName
protected TableName targetTableName(Code)



targetVTI
protected FromVTI targetVTI(Code)



triggerInfo
protected TriggerInfo triggerInfo(Code)





Method Detail
adjustDeferredFlag
protected void adjustDeferredFlag(boolean adjustment)(Code)



bindCheckConstraint
public void bindCheckConstraint(NodeFactory nodeFactory, TableDescriptor targetTableDescriptor, ResultColumnList sourceRCL, ValueNode checkConstraint) throws StandardException(Code)
Binds an already parsed check constraint
Parameters:
  nodeFactory - Where to get query tree nodes.
Parameters:
  targetTableDescriptor - The TableDescriptor for the constrained table.
Parameters:
  sourceRCL - Result columns.
Parameters:
  checkConstraint - Parsed query tree for check constraint
exception:
  StandardException - Thrown on failure



bindConstraints
public ValueNode bindConstraints(DataDictionary dataDictionary, NodeFactory nodeFactory, TableDescriptor targetTableDescriptor, Dependent dependent, ResultColumnList sourceRCL, int[] changedColumnIds, FormatableBitSet readColsBitSet, boolean skipCheckConstraints, boolean includeTriggers) throws StandardException(Code)
Gets and binds all the constraints for an INSERT/UPDATE/DELETE. First finds the constraints that are relevant to this node. This is done by calling getAllRelevantConstriants(). If getAllRelevantConstraints() has already been called, then this list is used. Then it creates appropriate dependencies. Then binds check constraints. It also generates the array of FKInfo items that are used in code generation. Note: we have a new flag here to see if defer processing is enabled or not, the only scenario that is disabled is when we reapply the reply message we get from the source
Parameters:
  dataDictionary - The DataDictionary
Parameters:
  nodeFactory - Where to get query tree nodes.
Parameters:
  targetTableDescriptor - The TableDescriptor
Parameters:
  dependent - Parent object that will depend on all the constraintsthat we look up. If this argument is null, then weuse the default dependent (the statement being compiled).
Parameters:
  sourceRCL - RCL of the table being changed
Parameters:
  changedColumnIds - If null, all columns being changed, otherwise arrayof 1-based column ids for columns being changed
Parameters:
  readColsBitSet - bit set for the read scan
Parameters:
  skipCheckConstraints - whether to skip check constraints or not
Parameters:
  includeTriggers - whether triggers are included in the processing The bound, ANDed check constraints as a query tree.
exception:
  StandardException - Thrown on failure



generateCheckConstraints
public void generateCheckConstraints(ValueNode checkConstraints, ExpressionClassBuilder ecb, MethodBuilder mb) throws StandardException(Code)
Generate the code to evaluate a tree of CHECK CONSTRAINTS.
Parameters:
  checkConstraints - Bound query tree of ANDed check constraints.
Parameters:
  ecb - Expression Class Builder
exception:
  StandardException - Thrown on error



generateCheckConstraints
public MethodBuilder generateCheckConstraints(ValueNode checkConstraints, ExpressionClassBuilder ecb) throws StandardException(Code)
Generate a method to evaluate a tree of CHECK CONSTRAINTS.
Parameters:
  checkConstraints - Bound query tree of ANDed check constraints.
Parameters:
  ecb - Expression Class Builder
exception:
  StandardException - Thrown on error



generateCodeForTemporaryTable
protected void generateCodeForTemporaryTable(ActivationClassBuilder acb, MethodBuilder mb) throws StandardException(Code)
If the DML is on a temporary table, generate the code to mark temporary table as modified in the current UOW. At rollback transaction (or savepoint), we will check if the temporary table was modified in that UOW. If yes, we will remove all the data from the temporary table
Parameters:
  acb - The ActivationClassBuilder for the class being built
Parameters:
  mb - The execute() method to be built
exception:
  StandardException - Thrown on error



getAffectedIndexes
protected void getAffectedIndexes(TableDescriptor td, ResultColumnList updatedColumns, FormatableBitSet colBitSet) throws StandardException(Code)
Get the list of indexes that must be updated by this DML statement. WARNING: As a side effect, it creates dependencies on those indexes.
Parameters:
  td - The table descriptor for the table being updated
Parameters:
  updatedColumns - The updated column list. If not update, null
Parameters:
  colBitSet - a 1 based bit set of the columns in the list
exception:
  StandardException - Thrown on error



getAllRelevantConstraints
protected ConstraintDescriptorList getAllRelevantConstraints(DataDictionary dd, TableDescriptor td, boolean skipCheckConstraints, int[] changedColumnIds) throws StandardException(Code)
Get all the constraints relevant to this DML operation
Parameters:
  dd - The DataDictionary
Parameters:
  td - The TableDescriptor
Parameters:
  skipCheckConstraints - Skip check constraints
Parameters:
  changedColumnIds - If null, all columns being changed, otherwise arrayof 1-based column ids for columns being changed the constraint descriptor list
exception:
  StandardException - Thrown on failure



getAllRelevantTriggers
protected GenericDescriptorList getAllRelevantTriggers(DataDictionary dd, TableDescriptor td, int[] changedColumnIds, boolean includeTriggers) throws StandardException(Code)
Get all the triggers relevant to this DML operation
Parameters:
  dd - The data dictionary
Parameters:
  td - The TableDescriptor
Parameters:
  changedColumnIds - If null, all columns being changed, otherwise arrayof 1-based column ids for columns being changed
Parameters:
  includeTriggers - whether we allow trigger processing or not forthis table the constraint descriptor list
exception:
  StandardException - Thrown on failure



getCheckConstraints
public ValueNode getCheckConstraints()(Code)
Get the check constraints for this node the check constraints, may be null



getFKInfo
public FKInfo[] getFKInfo()(Code)
Return the FKInfo structure. Just a little wrapper to make sure we don't try to access it until after binding. the array of fkinfos



getReadColMap
public static int[] getReadColMap(int column_map_length, FormatableBitSet readColsBitSet)(Code)
Get a map to efficiently find heap columns from a compressed set of read columns. The returns a map such that
 map[heapColId (0 based)] -> readCol id (0 based)
 

Parameters:
  column_map_length - The number of columns(ints) in the map.
Parameters:
  readColsBitSet - A language style (1 based) bit set with bits forread heap columns set.RESOLVE: Replace this with a call to RowUtil when the store andthe language both use 0 base or 1 base offsets for columns. Todaywe can't use the store function because we have a 1 based FormatableBitSet.



getResultColumnList
protected void getResultColumnList() throws StandardException(Code)
Get and bind the ResultColumnList representing the columns in the target table, given the table's name.
exception:
  StandardException - Thrown on error



getResultColumnList
protected FromBaseTable getResultColumnList(ResultColumnList inputRcl) throws StandardException(Code)
Get and bind the ResultColumnList representing the columns in the target table, given the table's name.
exception:
  StandardException - Thrown on error



getSchemaDescriptor
public SchemaDescriptor getSchemaDescriptor() throws StandardException(Code)
Get a schema descriptor for the given table. Uses this.targetTableName. Schema Descriptor
exception:
  StandardException - throws on schema namethat doesn't exist



getTriggerInfo
public TriggerInfo getTriggerInfo()(Code)
Return the TriggerInfo structure. Just a little wrapper to make sure we don't try to access it until after binding. the trigger info



getXAffectedIndexes
static void getXAffectedIndexes(TableDescriptor baseTable, ResultColumnList updatedColumns, FormatableBitSet colBitSet, Vector conglomVector) throws StandardException(Code)
Marks which indexes are affected by an UPDATE of the desired shape. Is passed a list of updated columns. Does the following: 1) finds all indices which overlap the updated columns 2) adds the index columns to a bitmap of affected columns 3) adds the index descriptors to a list of conglomerate descriptors.
Parameters:
  updatedColumns - a list of updated columns
Parameters:
  colBitSet - OUT: evolving bitmap of affected columns
Parameters:
  conglomVector - OUT: vector of affected indices
exception:
  StandardException - Thrown on error



hasCheckConstraints
protected boolean hasCheckConstraints(DataDictionary dd, TableDescriptor td) throws StandardException(Code)
Determine whether or not there are check constraints on the specified table.
Parameters:
  dd - The DataDictionary to use
Parameters:
  td - The TableDescriptor for the table Whether or not there are check constraints on the specified table.
exception:
  StandardException - Thrown on failure



init
public void init(Object resultSet)(Code)
Initializer for a DMLModStatementNode -- delegate to DMLStatementNode
Parameters:
  resultSet - A ResultSetNode for the result set of theDML statement



init
public void init(Object resultSet, Object statementType)(Code)
Initializer for a DMLModStatementNode -- delegate to DMLStatementNode
Parameters:
  resultSet - A ResultSetNode for the result set of theDML statement
Parameters:
  statementType - used by nodes that allocate a DMLMod directly(rather than inheriting it).



isAtomic
public boolean isAtomic()(Code)
INSERT/UPDATE/DELETE are always atomic. true



markAffectedIndexes
protected void markAffectedIndexes(Vector affectedConglomerates) throws StandardException(Code)



normalizeSynonymColumns
public void normalizeSynonymColumns(ResultColumnList rcl, TableName targetTableName) throws StandardException(Code)
Normalize synonym column references to have the name of the base table.
Parameters:
  rcl - The result column list of the target table
Parameters:
  targetTableName - The target tablename
exception:
  StandardException - Thrown on error



optimize
public QueryTreeNode optimize() throws StandardException(Code)
Generate an optimized QueryTree from a bound QueryTree. Actually, it can annotate the tree in place rather than generate a new tree, but this interface allows the root node of the optimized QueryTree to be different from the root node of the bound QueryTree. For non-optimizable statements, this method is a no-op. Throws an exception if the tree is not bound, or if the binding is out of date. An optimized QueryTree
exception:
  StandardException - Thrown on failure



parseCheckConstraint
public ValueNode parseCheckConstraint(String checkConstraintText, TableDescriptor td) throws StandardException(Code)
Parse a check constraint and turn it into a query tree.
Parameters:
  checkConstraintText - Text of CHECK CONSTRAINT.
Parameters:
  td - The TableDescriptor for the table the the constraint is on. The parsed check constraint as a query tree.
exception:
  StandardException - Thrown on failure



requiresDeferredProcessing
public boolean requiresDeferredProcessing()(Code)
Does this DML Node require deferred processing? Set to true if we have triggers or referential constraints that need deferred processing. true/false



setRefActionInfo
public void setRefActionInfo(long fkIndexConglomId, int[] fkColArray, String parentResultSetId, boolean dependentScan)(Code)



setTarget
void setTarget(QueryTreeNode targetName)(Code)



statementToString
public String statementToString()(Code)



verifyTargetTable
void verifyTargetTable() throws StandardException(Code)
Verify the target table. Get the TableDescriptor if the target table is not a VTI.
exception:
  StandardException - Thrown on error



Fields inherited from org.apache.derby.impl.sql.compile.DMLStatementNode
ResultSetNode resultSet(Code)(Java Doc)

Methods inherited from org.apache.derby.impl.sql.compile.DMLStatementNode
public Visitable accept(Visitor v) throws StandardException(Code)(Java Doc)
int activationKind()(Code)(Java Doc)
public QueryTreeNode bind(DataDictionary dataDictionary) throws StandardException(Code)(Java Doc)
protected void bindExpressions() throws StandardException(Code)(Java Doc)
protected void bindExpressionsWithTables() throws StandardException(Code)(Java Doc)
public QueryTreeNode bindResultSetsWithTables(DataDictionary dataDictionary) throws StandardException(Code)(Java Doc)
protected void bindTables(DataDictionary dataDictionary) throws StandardException(Code)(Java Doc)
void generateParameterValueSet(ActivationClassBuilder acb) throws StandardException(Code)(Java Doc)
int getPrivType()(Code)(Java Doc)
public ResultSetNode getResultSetNode()(Code)(Java Doc)
public void init(Object resultSet)(Code)(Java Doc)
public boolean isAtomic() throws StandardException(Code)(Java Doc)
public ResultDescription makeResultDescription()(Code)(Java Doc)
public QueryTreeNode optimize() throws StandardException(Code)(Java Doc)
public void printSubNodes(int depth)(Code)(Java Doc)

Fields inherited from org.apache.derby.impl.sql.compile.StatementNode
final static int NEED_CURSOR_ACTIVATION(Code)(Java Doc)
final static int NEED_DDL_ACTIVATION(Code)(Java Doc)
final static int NEED_NOTHING_ACTIVATION(Code)(Java Doc)
final static int NEED_PARAM_ACTIVATION(Code)(Java Doc)
final static int NEED_ROW_ACTIVATION(Code)(Java Doc)

Methods inherited from org.apache.derby.impl.sql.compile.StatementNode
abstract int activationKind()(Code)(Java Doc)
public GeneratedClass generate(ByteArray byteCode) throws StandardException(Code)(Java Doc)
public boolean isAtomic() throws StandardException(Code)(Java Doc)
protected TableDescriptor lockTableForCompilation(TableDescriptor td) throws StandardException(Code)(Java Doc)
abstract public String statementToString()(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Fields inherited from org.apache.derby.impl.sql.compile.QueryTreeNode
final public static int AUTOINCREMENT_CREATE_MODIFY(Code)(Java Doc)
final public static int AUTOINCREMENT_INC_INDEX(Code)(Java Doc)
final public static int AUTOINCREMENT_IS_AUTOINCREMENT_INDEX(Code)(Java Doc)
final public static int AUTOINCREMENT_START_INDEX(Code)(Java Doc)
boolean isPrivilegeCollectionRequired(Code)(Java Doc)

Methods inherited from org.apache.derby.impl.sql.compile.QueryTreeNode
public Visitable accept(Visitor v) throws StandardException(Code)(Java Doc)
public QueryTreeNode bind() throws StandardException(Code)(Java Doc)
public DataValueDescriptor convertDefaultNode(DataTypeDescriptor typeDescriptor) throws StandardException(Code)(Java Doc)
protected static void debugFlush()(Code)(Java Doc)
public static void debugPrint(String outputString)(Code)(Java Doc)
public void disablePrivilegeCollection()(Code)(Java Doc)
public String executeSchemaName()(Code)(Java Doc)
public String executeStatementName()(Code)(Java Doc)
public static String formatNodeString(String nodeString, int depth)(Code)(Java Doc)
public boolean foundString(String[] list, String search)(Code)(Java Doc)
public GeneratedClass generate(ByteArray ignored) throws StandardException(Code)(Java Doc)
protected void generate(ActivationClassBuilder acb, MethodBuilder mb) throws StandardException(Code)(Java Doc)
void generateAuthorizeCheck(ActivationClassBuilder acb, MethodBuilder mb, int sqlOperation)(Code)(Java Doc)
public int getBeginOffset()(Code)(Java Doc)
final protected ClassFactory getClassFactory()(Code)(Java Doc)
final protected CompilerContext getCompilerContext()(Code)(Java Doc)
final public ContextManager getContextManager()(Code)(Java Doc)
public Object getCursorInfo() throws StandardException(Code)(Java Doc)
final public DataDictionary getDataDictionary()(Code)(Java Doc)
final public DependencyManager getDependencyManager()(Code)(Java Doc)
public int getEndOffset()(Code)(Java Doc)
final public ExecutionFactory getExecutionFactory()(Code)(Java Doc)
final public GenericConstantActionFactory getGenericConstantActionFactory()(Code)(Java Doc)
protected int getIntProperty(String value, String key) throws StandardException(Code)(Java Doc)
final protected LanguageConnectionContext getLanguageConnectionContext()(Code)(Java Doc)
final public NodeFactory getNodeFactory()(Code)(Java Doc)
protected int getNodeType()(Code)(Java Doc)
public ConstantNode getNullNode(TypeId typeId, ContextManager cm) throws StandardException(Code)(Java Doc)
public DataTypeDescriptor[] getParameterTypes() throws StandardException(Code)(Java Doc)
public long getRowEstimate()(Code)(Java Doc)
public String getSPSName()(Code)(Java Doc)
final SchemaDescriptor getSchemaDescriptor(String schemaName) throws StandardException(Code)(Java Doc)
final SchemaDescriptor getSchemaDescriptor(String schemaName, boolean raiseError) throws StandardException(Code)(Java Doc)
protected int getStatementType()(Code)(Java Doc)
final protected TableDescriptor getTableDescriptor(String tableName, SchemaDescriptor schema) throws StandardException(Code)(Java Doc)
final protected TypeCompiler getTypeCompiler(TypeId typeId)(Code)(Java Doc)
public void init(Object arg1) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8, Object arg9) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8, Object arg9, Object arg10) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8, Object arg9, Object arg10, Object arg11) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8, Object arg9, Object arg10, Object arg11, Object arg12) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8, Object arg9, Object arg10, Object arg11, Object arg12, Object arg13) throws StandardException(Code)(Java Doc)
public void init(Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Object arg6, Object arg7, Object arg8, Object arg9, Object arg10, Object arg11, Object arg12, Object arg13, Object arg14) throws StandardException(Code)(Java Doc)
public boolean isAtomic() throws StandardException(Code)(Java Doc)
protected boolean isInstanceOf(int nodeType)(Code)(Java Doc)
public boolean isPrivilegeCollectionRequired()(Code)(Java Doc)
final boolean isSessionSchema(SchemaDescriptor sd)(Code)(Java Doc)
final boolean isSessionSchema(String schemaName)(Code)(Java Doc)
public ConstantAction makeConstantAction() throws StandardException(Code)(Java Doc)
public ResultDescription makeResultDescription() throws StandardException(Code)(Java Doc)
public TableName makeTableName(String schemaName, String flatName) throws StandardException(Code)(Java Doc)
public boolean needsSavepoint()(Code)(Java Doc)
protected String nodeHeader()(Code)(Java Doc)
public QueryTreeNode optimize() throws StandardException(Code)(Java Doc)
public static QueryTreeNode parseQueryText(CompilerContext compilerContext, String queryText, Object[] paramDefaults, LanguageConnectionContext lcc) throws StandardException(Code)(Java Doc)
public void printLabel(int depth, String label)(Code)(Java Doc)
public void printSubNodes(int depth)(Code)(Java Doc)
public boolean referencesSessionSchema() throws StandardException(Code)(Java Doc)
public TableName resolveTableToSynonym(TableName tabName) throws StandardException(Code)(Java Doc)
public void setBeginOffset(int beginOffset)(Code)(Java Doc)
public void setContextManager(ContextManager cm)(Code)(Java Doc)
public void setEndOffset(int endOffset)(Code)(Java Doc)
public void setNodeType(int nodeType)(Code)(Java Doc)
public void setRefActionInfo(long fkIndexConglomId, int[] fkColArray, String parentResultSetId, boolean dependentScan)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void treePrint()(Code)(Java Doc)
public void treePrint(int depth)(Code)(Java Doc)
String verifyClassExist(String javaClassName, boolean convertCase) throws StandardException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.