org.apache.derby.impl.sql.compile

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 
org.apache.derby.impl.sql.compile
Java Source File NameTypeComment
AccessPathImpl.javaClass
ActivationClassBuilder.javaClass ActivationClassBuilder provides an interface to satisfy generation's common tasks in building an activation class, as well as a repository for the JavaFactory used to generate the basic language constructs for the methods in the class. Common tasks include the setting of a static field for each expression function that gets added, the creation of the execute method that gets expanded as the query tree is walked, setting the superclass.

An activation class is defined for each statement.

AggregateDefinition.javaInterface An AggregateDefinition defines an aggregate. It is used by Cloudscape during query compilation to determine what Aggregator is used to aggregate a particular data type and what datatype the Aggregator will emit.
AggregateNode.javaClass An Aggregate Node is a node that reprsents a set function/aggregate.
AllResultColumn.javaClass An AllResultColumn represents a "*" result column in a SELECT statement.
AlterTableNode.javaClass A AlterTableNode represents a DDL statement that alters a table.
AndNode.javaClass
BaseColumnNode.javaClass A BaseColumnNode represents a column in a base table.
BaseJoinStrategy.javaClass
BaseTableNumbersVisitor.javaClass Walk through a subtree and build a list of the assigned numbers for all tables that exist in that subtree.
BaseTypeCompiler.javaClass
BetweenOperatorNode.javaClass A BetweenOperatorNode represents a BETWEEN clause.
BinaryArithmeticOperatorNode.javaClass This node represents a binary arithmetic operator, like + or *.
BinaryComparisonOperatorNode.javaClass This node is the superclass for all binary comparison operators, such as =, <>, <, etc.
BinaryListOperatorNode.javaClass A BinaryListOperatorNode represents a built-in "binary" operator with a single operand on the left of the operator and a list of operands on the right.
BinaryLogicalOperatorNode.javaClass
BinaryOperatorNode.javaClass A BinaryOperatorNode represents a built-in binary operator as defined by the ANSI/ISO SQL standard.
BinaryRelationalOperatorNode.javaClass This class represents the 6 binary operators: LessThan, LessThanEquals, Equals, NotEquals, GreaterThan and GreaterThanEquals.
BitConstantNode.javaClass
BitTypeCompiler.javaClass This class implements TypeCompiler for the SQL BIT datatype.
BooleanConstantNode.javaClass
BooleanTypeCompiler.javaClass This class implements TypeCompiler for the SQL BOOLEAN datatype.
CallStatementNode.javaClass An CallStatementNode represents a CALL statement.
CastNode.javaClass An CastNode represents a cast expressionr.
CharConstantNode.javaClass
CharStream.javaInterface This interface describes a character stream that maintains line and column number positions of the characters.
CharTypeCompiler.javaClass This class implements TypeCompiler for the SQL char datatypes.
CLOBTypeCompiler.javaClass This class implements TypeCompiler for the SQL LOB types.
CoalesceFunctionNode.javaClass This node represents coalesce/value function which returns the first argument that is not null. The arguments are evaluated in the order in which they are specified, and the result of the function is the first argument that is not null.
CollectNodesVisitor.javaClass Collect all nodes of the designated type to be returned in a vector.
ColumnDefinitionNode.javaClass A ColumnDefinitionNode represents a column definition in a DDL statement.
ColumnOrdering.javaClass
ColumnReference.javaClass A ColumnReference represents a column in the query tree.
CompilerContextImpl.javaClass CompilerContextImpl, implementation of CompilerContext.
ConcatenationOperatorNode.javaClass
ConditionalNode.javaClass A ConditionalNode represents an if/then/else operator with a single boolean expression on the "left" of the operator and a list of expressions on the "right".
ConstantNode.javaClass ConstantNode holds literal constants as well as nulls.

A NULL from the parser may not yet know its type; that must be set during binding, as it is for parameters.

the DataValueDescriptor methods want to throw exceptions when they are of the wrong type, but to do that they must check typeId when the value is null, rather than the instanceof check they do for returning a valid value.

For code generation, we generate a static field.

ConstraintDefinitionNode.javaClass A ConstraintDefintionNode is a class for all nodes that can represent constraint definitions.
CostEstimateImpl.javaClass
CountAggregateDefinition.javaClass Defintion for the COUNT()/COUNT(*) aggregates.
CreateAliasNode.javaClass A CreateAliasNode represents a CREATE ALIAS statement.
CreateIndexNode.javaClass A CreateIndexNode is the root of a QueryTree that represents a CREATE INDEX statement.
CreateSchemaNode.javaClass A CreateSchemaNode is the root of a QueryTree that represents a CREATE SCHEMA statement.
CreateTableNode.javaClass A CreateTableNode is the root of a QueryTree that represents a CREATE TABLE or DECLARE GLOBAL TEMPORARY TABLE statement.
CreateTriggerNode.javaClass A CreateTriggerNode is the root of a QueryTree that represents a CREATE TRIGGER statement.
CreateViewNode.javaClass A CreateViewNode is the root of a QueryTree that represents a CREATE VIEW statement.
CurrentDatetimeOperatorNode.javaClass The CurrentDatetimeOperator operator is for the builtin CURRENT_DATE, CURRENT_TIME, and CURRENT_TIMESTAMP operations.
CurrentOfNode.javaClass The CurrentOf operator is used by positioned DELETE and UPDATE to get the current row and location for the target cursor.
CurrentRowLocationNode.javaClass The CurrentRowLocation operator is used by DELETE and UPDATE to get the RowLocation of the current row for the target table.
CursorNode.javaClass A CursorNode represents a result set that can be returned to a client. A cursor can be a named cursor created by the DECLARE CURSOR statement, or it can be an unnamed cursor associated with a SELECT statement (more precisely, a table expression that returns rows to the client).
C_NodeNames.javaInterface This is the set of constants used to identify the classes that are used in NodeFactoryImpl. This class is not shipped.
DateTypeCompiler.javaClass
DB2LengthOperatorNode.javaClass
DDLStatementNode.javaClass A DDLStatementNode represents any type of DDL statement: CREATE TABLE, CREATE INDEX, ALTER TABLE, etc.
DefaultNode.javaClass DefaultNode represents a column/parameter default.
DefaultVTIModDeferPolicy.javaClass This class implements the default policy for defering modifications to virtual tables.
DeleteNode.javaClass A DeleteNode represents a DELETE statement.
DistinctNode.javaClass A DistinctNode represents a result set for a disinct operation on a select.
DMLModStatementNode.javaClass A DMLStatement for a table modification: to wit, INSERT UPDATE or DELETE.
DMLStatementNode.javaClass A DMLStatementNode represents any type of DML statement: a cursor declaration, an INSERT statement, and UPDATE statement, or a DELETE statement.
DropAliasNode.javaClass A DropAliasNode represents a DROP ALIAS statement.
DropIndexNode.javaClass A DropIndexNode is the root of a QueryTree that represents a DROP INDEX statement.
DropSchemaNode.javaClass A DropSchemaNode is the root of a QueryTree that represents a DROP SCHEMA statement.
DropTableNode.javaClass A DropTableNode is the root of a QueryTree that represents a DROP TABLE statement.
DropTriggerNode.javaClass A DropTriggerNode is the root of a QueryTree that represents a DROP TRIGGER statement.
DropViewNode.javaClass A DropViewNode is the root of a QueryTree that represents a DROP VIEW statement.
ExecSPSNode.javaClass A ExecSPSNode is the root of a QueryTree that represents an EXECUTE STATEMENT statement.
ExpressionClassBuilder.javaClass ExpressionClassBuilder provides an interface to satisfy generation's common tasks in building classes that involve expressions. This is the common superclass of ActivationClassBuilder and FilterClassBuilder.
ExtractOperatorNode.javaClass This node represents a unary extract operator, used to extract a field from a date/time.
FKConstraintDefinitionNode.javaClass A FKConstraintDefintionNode represents table constraint definitions.
FromBaseTable.javaClass A FromBaseTable represents a table in the FROM list of a DML statement, as distinguished from a FromSubquery, which represents a subquery in the FROM list.
FromList.javaClass A FromList represents the list of tables in a FROM clause in a DML statement.
FromSubquery.javaClass A FromSubquery represents a subquery in the FROM list of a DML statement.
FromTable.javaClass A FromTable represents a table in the FROM clause of a DML statement.
FromVTI.javaClass A FromVTI represents a VTI in the FROM list of a DML statement.
GetCurrentConnectionNode.javaClass This node represents a unary getCurrentConnection operator RESOLVE - parameter will always be null for now.
GrantNode.javaClass This class represents a GRANT statement.
GroupByColumn.javaClass A GroupByColumn is a column in the GROUP BY clause.
GroupByList.javaClass A GroupByList represents the list of expressions in a GROUP BY clause in a SELECT statement.
GroupByNode.javaClass A GroupByNode represents a result set for a grouping operation on a select.
HalfOuterJoinNode.javaClass An HalfOuterJoinNode represents a left or a right outer join result set.
HasCorrelatedCRsVisitor.javaClass Find out if we have an correlated column reference anywhere below us.
HashJoinStrategy.javaClass
HashNodeList.javaClass HashNodeList is the root class for all hashlists of query tree nodes.
HashTableNode.javaClass A HashTableNode represents a result set where a hash table is built.
HasNodeVisitor.javaClass Find out if we have a particular node anywhere in the tree.
HasVariantValueNodeVisitor.javaClass Find out if we have a value node with variant type less than what the caller desires, anywhere below us.
IndexToBaseRowNode.javaClass This node type translates an index row to a base row.
InListOperatorNode.javaClass An InListOperatorNode represents an IN list.
InsertNode.javaClass An InsertNode is the top node in a query tree for an insert statement.

After parsing, the node contains targetTableName: the target table for the insert collist: a list of column names, if specified queryexpr: the expression being inserted, either a values clause or a select form; both of these are represented via the SelectNode, potentially with a TableOperatorNode such as UnionNode above it.

After binding, the node has had the target table's descriptor located and inserted, and the queryexpr and collist have been massaged so that they are identical to the table layout.

IntersectOrExceptNode.javaClass A IntersectOrExceptNode represents an INTERSECT or EXCEPT DML statement.
IsNode.javaClass
IsNullNode.javaClass
JavaToSQLValueNode.javaClass This node type converts a value from the Java domain to the SQL domain.
JavaValueNode.javaClass This abstract node class represents a data value in the Java domain.
JoinNode.javaClass A JoinNode represents a join result set for either of the basic DML operations: SELECT and INSERT.
LengthOperatorNode.javaClass
Level2CostEstimateImpl.javaClass
Level2OptimizerFactoryImpl.javaClass This is simply the factory for creating an optimizer.
Level2OptimizerImpl.javaClass This is the Level 2 Optimizer.
LikeEscapeOperatorNode.javaClass This node represents a like comparison operator (no escape) If the like pattern is a constant or a parameter then if possible the like is modified to include a >= and < operator.
LOBConstantNode.javaClass
LOBTypeCompiler.javaClass This class implements TypeCompiler for the SQL LOB types.
LockTableNode.javaClass
MaterializeResultSetNode.javaClass A MaterializeResultSetNode represents a materialization result set for any child result set that needs one.
MaterializeSubqueryNode.javaClass A MaterializeSubqueryNode is used to replace the nodes for a subquery, to facilitate code generation for materialization if possible.
MaxMinAggregateDefinition.javaClass Defintion for the MAX()/MIN() aggregates.
MethodCallNode.javaClass A MethodCallNode represents a Java method call.
MiscellaneousStatementNode.javaClass A MiscellaneousStatement represents any type of statement that doesn't fit into the well defined categores: SET (non-transaction).
ModifyColumnNode.javaClass A ModifyColumnNode represents a modify column in an ALTER TABLE statement.
NestedLoopJoinStrategy.javaClass
NewInvocationNode.javaClass A NewInvocationNode represents a new object() invocation.
NodeFactoryImpl.javaClass This class is a factory for QueryTreeNode nodes.
NonStaticMethodCallNode.javaClass A NonStaticMethodCallNode is really a node to represent a (static or non-static) method call from an object (as opposed to a static method call from a class.
NOPStatementNode.javaClass A NOPStatement node is for statements that don't do anything.
NormalizeResultSetNode.javaClass A NormalizeResultSetNode represents a normalization result set for any child result set that needs one.
NotNode.javaClass A NotNode represents a NOT operator.
NumericConstantNode.javaClass
NumericTypeCompiler.javaClass This class implements TypeId for the SQL numeric datatype.
OptimizerFactoryImpl.javaClass This is simply the factory for creating an optimizer.
OptimizerImpl.javaClass This will be the Level 1 Optimizer. RESOLVE - it's a level 0 optimizer right now. Current State: o No costing services o We can only cost a derived table with a join once. Optimizer uses OptimizableList to keep track of the best join order as it builds it.
OrderByColumn.javaClass An OrderByColumn is a column in the ORDER BY clause.
OrderByList.javaClass An OrderByList is an ordered list of columns in the ORDER BY clause.
OrderByNode.javaClass An OrderByNode represents a result set for a sort operation for an order by list.
OrderedColumn.javaClass An ordered column has position.
OrderedColumnList.javaClass
OrNode.javaClass
ParameterNode.javaClass This node type represents a ? parameter.
ParseException.javaClass This exception is thrown when parse errors are encountered.
ParserImpl.javaClass
Predicate.javaClass A Predicate represents a top level predicate.
PredicateList.javaClass A PredicateList represents the list of top level predicates. Each top level predicate consists of an AndNode whose leftOperand is the top level predicate and whose rightOperand is true.
PrivilegeNode.javaClass This node represents a set of privileges that are granted or revoked on one object.
ProjectRestrictNode.javaClass A ProjectRestrictNode represents a result set for any of the basic DML operations: SELECT, INSERT, UPDATE, and DELETE.
QuantifiedBinaryOperatorNode.javaClass A QuantifiedBinaryOperatorNode represents a binary quantified predicate that is used with a subquery, such as IN, NOT IN, < ALL, etc.
QuantifiedUnaryOperatorNode.javaClass A QuantifiedUnaryOperatorNode represents a unary quantified predicate that is used with a subquery, such as EXISTS and NOT EXISTS.
QueryTreeNode.javaClass QueryTreeNode is the root class for all query tree nodes.
QueryTreeNodeVector.javaClass QueryTreeNodeVector is the root class for all lists of query tree nodes. It provides a wrapper for java.util.Vector.
ReferencedTablesVisitor.javaClass Build a JBitSet of all of the referenced tables in the tree.
RefTypeCompiler.javaClass This class implements TypeCompiler for the SQL REF datatype.
RelationalOperator.javaInterface This interface is an abstraction of a relational operator.
RemapCRsVisitor.javaClass Remap/unremap the CRs to the underlying expression.
RenameNode.javaClass A RenameNode is the root of a QueryTree that represents a RENAME TABLE/COLUMN/INDEX statement.
ReplaceAggregatesWithCRVisitor.javaClass Replace all aggregates with result columns.
ResultColumn.javaClass A ResultColumn represents a result column in a SELECT, INSERT, or UPDATE statement.
ResultColumnList.javaClass A ResultColumnList is the target list of a SELECT, INSERT, or UPDATE.
ResultSetNode.javaClass A ResultSetNode represents a result set, that is, a set of rows.
RevokeNode.javaClass This class represents a REVOKE statement.
RoutineDesignator.javaClass This node represents a routine signature.
RowOrderingImpl.javaClass
RowResultSetNode.javaClass A RowResultSetNode represents the result set for a VALUES clause.
SavepointNode.javaClass A SavepointNode is the root of a QueryTree that represents a Savepoint (ROLLBACK savepoint, RELASE savepoint and SAVEPOINT) statement.
ScrollInsensitiveResultSetNode.javaClass A ScrollInsensitiveResultSetNode represents the insensitive scrolling cursor functionality for any child result set that needs one.
SelectNode.javaClass A SelectNode represents the result set for any of the basic DML operations: SELECT, INSERT, UPDATE, and DELETE.
SetOperatorNode.javaClass A SetOperatorNode represents a UNION, INTERSECT, or EXCEPT in a DML statement.
SetSchemaNode.javaClass A SetSchemaNode is the root of a QueryTree that represents a SET SCHEMA statement.
SetTransactionIsolationNode.javaClass
SimpleStringOperatorNode.javaClass
SingleChildResultSetNode.javaClass A SingleChildResultSetNode represents a result set with a single child.
SpecialFunctionNode.javaClass SpecialFunctionNode handles system SQL functions. A function value is either obtained by a method call off the LanguageConnectionContext or Activation. LanguageConnectionContext functions are state related to the connection. Activation functions are those related to the statement execution. Each SQL function takes no arguments and returns a SQLvalue.

Functions supported:

  • USER
  • CURRENT_USER
  • SESSION_USER
  • SYSTEM_USER
  • CURRENT SCHEMA
  • CURRENT ISOLATION
  • IDENTITY_VAL_LOCAL

This node is used rather than some use of MethodCallNode for runtime performance.

SQLBooleanConstantNode.javaClass
SQLParser.javaClass
SQLParserConstants.javaInterface
SQLParserTokenManager.javaClass
SQLToJavaValueNode.javaClass This node type converts a value in the SQL domain to a value in the Java domain.
StatementNode.javaClass A StatementNode represents a single statement in the language.
StaticClassFieldReferenceNode.javaClass A StaticClassFieldReferenceNode represents a Java static field reference from a Class (as opposed to an Object).
StaticMethodCallNode.javaClass A StaticMethodCallNode represents a static method call from a Class (as opposed to from an Object). For a procedure the call requires that the arguments be ? parameters. The parameter is *logically* passed into the method call a number of different ways.

For a application call like CALL MYPROC(?) the logically Java method call is (in psuedo Java/SQL code) (examples with CHAR(10) parameter)
Fixed length IN parameters - com.acme.MyProcedureMethod(?)
Variable length IN parameters - com.acme.MyProcedureMethod(CAST (? AS CHAR(10))
Fixed length INOUT parameter - String[] holder = new String[] {?}; com.acme.MyProcedureMethod(holder); ? = holder[0]
Variable length INOUT parameter - String[] holder = new String[] {CAST (? AS CHAR(10)}; com.acme.MyProcedureMethod(holder); ? = CAST (holder[0] AS CHAR(10))
Fixed length OUT parameter - String[] holder = new String[1]; com.acme.MyProcedureMethod(holder); ? = holder[0]
Variable length INOUT parameter - String[] holder = new String[1]; com.acme.MyProcedureMethod(holder); ? = CAST (holder[0] AS CHAR(10))

For static method calls there is no pre-definition of an IN or INOUT parameter, so a call to CallableStatement.registerOutParameter() makes the parameter an INOUT parameter, provided: - the parameter is passed directly to the method call (no casts or expressions). - the method's parameter type is a Java array type. Since this is a dynmaic decision we compile in code to take both paths, based upon a boolean isINOUT which is dervied from the ParameterValueSet.

SubqueryList.javaClass A SubqueryList represents a list of subquerys within a specific clause (select, where or having) in a DML statement.
SubqueryNode.javaClass A SubqueryNode represents a subquery.
SubstituteExpressionVisitor.javaClass Replaces a source expression with a target expression.
SumAvgAggregateDefinition.javaClass Defintion for the SUM()/AVG() aggregates.
TableElementList.javaClass A TableElementList represents the list of columns and other table elements such as constraints in a CREATE TABLE or ALTER TABLE statement.
TableElementNode.javaClass A TableElementNode is an item in a TableElementList, and represents a single table element such as a column or constraint in a CREATE TABLE or ALTER TABLE statement.
TableName.javaClass A TableName represents a qualified name, externally represented as a schema name and an object name separated by a dot.
TableOperatorNode.javaClass A TableOperatorNode represents a relational operator like UNION, INTERSECT, JOIN, etc.
TablePrivilegesNode.javaClass This class represents a set of privileges on one table.
TernaryOperatorNode.javaClass A TernaryOperatorNode represents a built-in ternary operators.
TestConstraintNode.javaClass A TestConstraintNode is used to determine when a constraint has been violated.
TimestampOperatorNode.javaClass The TimestampOperatorNode class implements the timestamp( date, time) function.
TimestampTypeCompiler.javaClass
TimeTypeCompiler.javaClass
Token.javaClass Describes the input token stream.
TokenMgrError.javaClass
TransactionStatementNode.javaClass A TransactionStatementNode represents any type of Transaction statement: SET TRANSACTION, COMMIT, and ROLLBACK.
TriggerReferencingStruct.javaClass Rudimentary structure for containing information about a REFERENCING clause for a trigger.
TypeCompilerFactoryImpl.javaClass
UCode_CharStream.javaClass An implementation of interface CharStream, where the stream is assumed to contain only Unicode characters.
UnaryArithmeticOperatorNode.javaClass
UnaryComparisonOperatorNode.javaClass This node is the superclass for all unary comparison operators, such as is null and is not null.
UnaryDateTimestampOperatorNode.javaClass This class implements the timestamp( x) and date(x) functions.
UnaryLogicalOperatorNode.javaClass
UnaryOperatorNode.javaClass A UnaryOperatorNode represents a built-in unary operator as defined by the ANSI/ISO SQL standard.
UnionNode.javaClass A UnionNode represents a UNION in a DML statement.
UntypedNullConstantNode.javaClass An UntypedNullConstantNode represents a SQL NULL before it has been bound.
UpdateNode.javaClass An UpdateNode represents an UPDATE statement.
UserDefinedTypeCompiler.javaClass
UserTypeConstantNode.javaClass User type constants.
ValueNode.javaClass A ValueNode is an abstract class for all nodes that can represent data values, that is, constants, columns, and expressions.
ValueNodeList.javaClass A ValueNodeList represents a list of ValueNodes within a specific predicate (eg, IN list, NOT IN list or BETWEEN) in a DML statement.
VarbitConstantNode.javaClass
VerifyAggregateExpressionsVisitor.javaClass If a RCL (SELECT list) contains an aggregate, then we must verify that the RCL (SELECT list) is valid.
VirtualColumnNode.javaClass A VirtualColumnNode represents a virtual column reference to a column in a row returned by an underlying ResultSetNode.
VTIDeferModPolicy.javaClass This class applies a VTI modification deferral policy to a statement to see whether it should be deferred.
XMLConstantNode.javaClass
XMLTypeCompiler.javaClass This class implements TypeCompiler for the XML type.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.