org.apache.derby.impl.sql.execute

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.execute 
org.apache.derby.impl.sql.execute
Java Source File NameTypeComment
AddJarConstantAction.javaClass Constant action to Add an external Jar file to a database.
AggregateSortObserver.javaClass This sort observer performs aggregation.
AggregatorInfo.javaClass This is a simple class used to store the run time information needed to invoke an aggregator.
AggregatorInfoList.javaClass Vector of AggergatorInfo objects.
AlterTableConstantAction.javaClass This class describes actions that are ALWAYS performed for an ALTER TABLE Statement at Execution time.
AnyResultSet.javaClass Takes a quantified predicate subquery's result set.
AutoincrementCounter.javaClass AutoincrementCounter is a not so general counter for the specific purposes of autoincrement columns.
AvgAggregator.javaClass Aggregator for AVG().
BaseActivation.javaClass BaseActivation provides the fundamental support we expect all activations to have.
BaseExpressionActivation.javaClass
BasicNoPutResultSetImpl.javaClass Abstract ResultSet for for operations that return rows but do not allow the caller to put data on output pipes.
BasicSortObserver.javaClass This is the most basic sort observer.
BulkTableScanResultSet.javaClass Read a base table or index in bulk.
CallStatementResultSet.javaClass Call the specified expression, ignoring the return, if any.
CardinalityCounter.javaClass This is a decorator (in Design Patterns Terminology) class to enhance the functionality of a RowLocationRetRowSource.
ColumnInfo.javaClass This is the Column descriptor that is passed from Compilation to Execution for CREATE TABLE statements.
ConstantActionActivation.javaClass A pre-compiled activation that supports a single ResultSet with a single constant action.
ConstraintConstantAction.javaClass This class describes actions that are ALWAYS performed for a constraint creation at Execution time.
ConstraintInfo.javaClass This is a simple class used to store the run time information about a constraint.
CountAggregator.javaClass Aggregator for COUNT()/COUNT(*).
CreateAliasConstantAction.javaClass This class describes actions that are ALWAYS performed for a CREATE ALIAS Statement at Execution time.
CreateConstraintConstantAction.javaClass This class describes actions that are ALWAYS performed for a constraint creation at Execution time.
CreateIndexConstantAction.javaClass This class describes actions that are ALWAYS performed for a CREATE TABLE Statement at Execution time.
CreateSchemaConstantAction.javaClass This class describes actions that are ALWAYS performed for a CREATE SCHEMA Statement at Execution time.
CreateTableConstantAction.javaClass This class describes actions that are ALWAYS performed for a CREATE TABLE Statement at Execution time.
CreateTriggerConstantAction.javaClass This class describes actions that are ALWAYS performed for a CREATE TRIGGER Statement at Execution time.
CreateViewConstantAction.javaClass This class describes actions that are ALWAYS performed for a CREATE VIEW Statement at Execution time.
CurrentDatetime.javaClass CurrentDatetime provides execution support for ensuring that the current datetime is evaluated only once for a statement.
CurrentOfResultSet.javaClass Takes a cursor name and returns the current row of the cursor; for use in generating the source row and row location for positioned update/delete operations.
CursorActivation.javaClass In the family of activation support classes, this one provides an activation with a cursor name.
DDLConstantAction.javaClass Abstract class that has actions that are across all DDL actions.
DDLSingleTableConstantAction.javaClass Abstract class that has actions that are across all DDL actions that are tied to a table.
DeleteCascadeResultSet.javaClass Delete the rows from the specified base table and executes delete/update on dependent tables depending on the referential actions specified. Note:(beetle:5197) Dependent Resultsets of DeleteCascade Resultset can in any one of the multiple resultsets generated for the same table because of multiple foreign key relationship to the same table.
DeleteConstantAction.javaClass This class describes compiled constants that are passed into DeleteResultSets.
DeleteResultSet.javaClass Delete the rows from the specified base table.
DeleteVTIResultSet.javaClass Delete the rows from the specified base table.
DependentResultSet.javaClass DependentResultSet should be used by only ON DELETE CASCADE/ON DELETE SET NULL ref actions implementation to gather the rows from the dependent tables.
DistinctGroupedAggregateResultSet.javaClass This ResultSet evaluates grouped aggregates when there is 1 or more distinct aggregate. It will scan the entire source result set and calculate the grouped aggregates when scanning the source during the first call to next(). RESOLVE - This subclass is essentially empty.
DistinctScalarAggregateResultSet.javaClass This ResultSet evaluates scalar aggregates where 1 (or more, in the future) of the aggregates are distinct.
DistinctScanResultSet.javaClass Eliminates duplicates while scanning the underlying conglomerate.
DMLVTIResultSet.javaClass
DMLWriteResultSet.javaClass For INSERT/UPDATE/DELETE impls.
DropAliasConstantAction.javaClass This class describes actions that are ALWAYS performed for a DROP ALIAS Statement at Execution time.
DropConstraintConstantAction.javaClass This class describes actions that are ALWAYS performed for a drop constraint at Execution time.
DropIndexConstantAction.javaClass This class describes actions that are ALWAYS performed for a DROP INDEX Statement at Execution time.
DropJarConstantAction.javaClass Constant action to drop an external jar file from a database.
DropSchemaConstantAction.javaClass This class describes actions that are ALWAYS performed for a DROP SCHEMA Statement at Execution time.
DropStatisticsConstantAction.javaClass this class drops all statistics for a particular table or index.
DropTableConstantAction.javaClass This class describes actions that are ALWAYS performed for a DROP TABLE Statement at Execution time.
DropTriggerConstantAction.javaClass This class describes actions that are ALWAYS performed for a DROP TRIGGER Statement at Execution time.
DropViewConstantAction.javaClass This class describes actions that are ALWAYS performed for a DROP VIEW Statement at Execution time.
FKInfo.javaClass This is a simple class used to store the run time information about a foreign key.
ForeignKeyRIChecker.javaClass A Referential Integrity checker for a foreign key constraint.
GenericAggregateResultSet.javaClass Generic aggregation utilities.
GenericAggregator.javaClass Adaptor that sits between execution layer and aggregates.
GenericConstantAction.javaClass
GenericConstantActionFactory.javaClass Factory for creating ConstantActions.

Implemetation note: For most operations, the ResultSetFactory determines if the operation is allowed in a readonly/target database. Because we perform JAR add/drop/replace with a utility rather than using normal language processing we never get a result set for these operations.

GenericExecutionContext.javaClass ExecutionContext stores the result set factory to be used by the current connection, and manages execution-level connection activities.
GenericExecutionFactory.javaClass This Factory is for creating the execution items needed by a connection for a given database.
GenericQualifier.javaClass This is the implementation for Qualifier.
GenericResultSetFactory.javaClass ResultSetFactory provides a wrapper around all of the result sets used in this execution implementation. This removes the need of generated classes to do a new and of the generator to know about all of the result sets.
GenericRIChecker.javaClass Generic implementation of a Referential Integrity checker.
GenericScanQualifier.javaClass This is the implementation for ScanQualifier.
GenericTriggerExecutor.javaClass A trigger executor is an object that executes a trigger.
GrantRevokeConstantAction.javaClass
GroupedAggregateResultSet.javaClass This ResultSet evaluates grouped, non distinct aggregates.
HashJoinResultSet.javaClass Hash join of 2 arbitrary result sets.
HashLeftOuterJoinResultSet.javaClass Left outer join using hash join of 2 arbitrary result sets.
HashScanResultSet.javaClass Takes a conglomerate and a table filter builds a hash table on the specified column of the conglomerate on the 1st open.
HashTableResultSet.javaClass Builds a hash table on the underlying result set tree.
IndexChanger.javaClass Perform Index maintenace associated with DML operations for a single index.
IndexColumnOrder.javaClass Basic implementation of ColumnOrdering.
IndexConstantAction.javaClass This class is the superclass for the classes that describe actions that are ALWAYS performed for a CREATE/DROP INDEX Statement at Execution time.
IndexRow.javaClass Basic implementation of ExecIndexRow.
IndexRowToBaseRowResultSet.javaClass Takes a result set with a RowLocation as the last column, and uses the RowLocation to get and return a row from the given base conglomerate.
IndexSetChanger.javaClass Perform Index maintenace associated with DML operations for a table's indexes.
IndexValueRow.javaClass Mapper of ValueRow into ExecIndexRow.
InsertConstantAction.javaClass This class describes compiled constants that are passed into InsertResultSets.
InsertResultSet.javaClass Insert the rows from the source into the specified base table.
InsertVTIResultSet.javaClass Insert the rows from the source into the specified base table.
InternalTriggerExecutionContext.javaClass There is one of these beasts per INSERT/DELETE/UPDATE statement.
JarDDL.javaClass
JarUtil.javaClass
JoinResultSet.javaClass Takes 2 NoPutResultSets and a join filter and returns the join's rows satisfying the filter as a result set.
LastIndexKeyResultSet.javaClass Return the last key in an index.
LockTableConstantAction.javaClass This class describes actions that are ALWAYS performed for a LOCK TABLE Statement at Execution time.
MaterializedResultSet.javaClass Materialize the underlying ResultSet tree into a temp table on the 1st open.
MaxMinAggregator.javaClass Aggregator for MAX()/MIN().
MergeJoinResultSet.javaClass Merge two result sets.
MiscResultSet.javaClass This is a wrapper class which invokes the Execution-time logic for Misc statements.
NestedLoopJoinResultSet.javaClass Takes 2 NoPutResultSets and a join filter and returns the join's rows satisfying the filter as a result set.
NestedLoopLeftOuterJoinResultSet.javaClass Takes 2 NoPutResultSets and a join filter and returns the join's rows satisfying the filter as a result set plus the rows from the left joined with a null row from the right when there is no matching row in the right result set.
NoPutResultSetImpl.javaClass Abstract ResultSet with built in Activation support for operations that return rows but do not allow the caller to put data on output pipes.
NormalizeResultSet.javaClass Cast the rows from the source result set to match the format of the result set for the entire statement.
NoRowsResultSetImpl.javaClass This implementation of ResultSet is meant to be overridden by subtypes in the execution engine.
OnceResultSet.javaClass Takes an expression subquery's result set and verifies that only a single scalar value is being returned.
OrderableAggregator.javaClass Abstract aggregator for Orderable aggregates (max/min).
PrivilegeInfo.javaClass
ProjectRestrictResultSet.javaClass Takes a table and a table filter and returns the table's rows satisfying the filter as a result set.
RealResultSetStatisticsFactory.javaClass ResultSetStatisticsFactory provides a wrapper around all of objects associated with run time statistics.

This implementation of the protocol is for returning the "real" run time statistics.

ReferencedKeyRIChecker.javaClass A Referential Integrity checker for a change to a referenced key (primary or unique).
RenameConstantAction.javaClass This class describes actions that are ALWAYS performed for a RENAME TABLE/COLUMN/INDEX Statement at Execution time.
ReplaceJarConstantAction.javaClass Constant action to Add an external Jar file to a database.
RIBulkChecker.javaClass Do a merge run comparing all the foreign keys from the foreign key conglomerate against the referenced keys from the primary key conglomerate.
RISetChecker.javaClass Checks a set or referential integrity constraints.
RoutinePrivilegeInfo.javaClass
RowChangerImpl.javaClass Perform row at a time DML operations of tables and maintain indexes.
RowResultSet.javaClass Takes a constant row value and returns it as a result set.
RowTriggerExecutor.javaClass A row trigger executor is an object that executes a row trigger.
RowUtil.javaClass Utility class manipulating rows.

Note: this class is public so it may be used by Replication execution code.

SavepointConstantAction.javaClass This class describes actions that are ALWAYS performed for a Savepoint (rollback, release and set savepoint) Statement at Execution time.
ScalarAggregateResultSet.javaClass This ResultSet evaluates scalar, non distinct aggregates.
ScrollInsensitiveResultSet.javaClass Provide insensitive scrolling functionality for the underlying result set.
SetConstraintsConstantAction.javaClass This class describes actions that are performed for a set constraint at Execution time.
SetOpResultSet.javaClass Takes the result set produced by an ordered UNION ALL of two tagged result sets and produces the INTERSECT or EXCEPT of the two input result sets.
SetSchemaConstantAction.javaClass This class describes actions that are ALWAYS performed for a SET SCHEMA Statement at Execution time.
SetTransactionIsolationConstantAction.javaClass This class describes actions that are ALWAYS performed for a SET TRANSACTION ISOLATION Statement at Execution time.
SetTransactionResultSet.javaClass This is a wrapper class which invokes the Execution-time logic for SET TRANSACTION statements.
SortResultSet.javaClass Takes a source result set, sends it to the sorter, and returns the results.
SqlXmlExecutor.javaClass This class is really just an execution time "utility" that makes calls to methods on the XMLDataValue interface.
StatementTriggerExecutor.javaClass A statement trigger executor is an object that executes a statement trigger.
SumAggregator.javaClass Aggregator for SUM().
SystemAggregator.javaClass Abstract aggregator that is extended by all internal (system) aggregators.
TablePrivilegeInfo.javaClass
TableScanResultSet.javaClass Takes a table and a table filter and returns the table's rows satisfying the filter as a result set.
TemporaryRowHolderImpl.javaClass This is a class that is used to temporarily (non-persistently) hold rows that are used in language execution.
TemporaryRowHolderResultSet.javaClass A result set to scan temporary row holders.
TriggerEvent.javaClass This is a simple class that we use to track trigger events.
TriggerEventActivator.javaClass Responsible for firing a trigger or set of triggers based on an event.
TriggerEvents.javaClass Static final trigger events.
TriggerInfo.javaClass This is a simple class used to store the run time information about a foreign key.
UnionResultSet.javaClass Takes two result sets and returns their union (all).
UniqueIndexSortObserver.javaClass Unique index aggregator.
UpdatableVTIConstantAction.javaClass This class describes compiled constants that are passed into Updatable VTIResultSets.
UpdateConstantAction.javaClass This class describes compiled constants that are passed into UpdateResultSets.
UpdateResultSet.javaClass Update the rows from the specified base table.
UpdateStatisticsConstantAction.javaClass This class describes actions that are performed for an UPDATE STATISTICS Statement at execution time.
UpdateVTIResultSet.javaClass Update the rows from the source into the specified base table.
ValueRow.javaClass Basic implementation of ExecRow.
VTIResultSet.javaClass
WriteCursorConstantAction.javaClass This abstract class describes compiled constants that are passed into Delete, Insert, and Update ResultSets.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.