Java Doc for BaseAxionCommand.java in  » Database-DBMS » axion » org » axiondb » engine » commands » 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 » axion » org.axiondb.engine.commands 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.axiondb.engine.commands.BaseAxionCommand

All known Subclasses:   org.axiondb.engine.commands.AlterTableCommand,  org.axiondb.engine.commands.ShutdownCommand,  org.axiondb.engine.commands.ChildTableUpdater,  org.axiondb.engine.commands.ConstraintCommand,  org.axiondb.engine.commands.TruncateCommand,  org.axiondb.engine.commands.InsertCommand,  org.axiondb.engine.commands.InsertIntoClause,  org.axiondb.engine.commands.RemountCommand,  org.axiondb.engine.commands.CheckFileStateCommand,  org.axiondb.engine.commands.DefragCommand,  org.axiondb.engine.commands.CreateCommand,  org.axiondb.engine.commands.SelectCommand,  org.axiondb.engine.commands.DropCommand,
BaseAxionCommand
abstract public class BaseAxionCommand implements AxionCommand(Code)
Abstract base AxionCommand implementation.
version:
   $Revision: 1.37 $ $Date: 2005/12/22 09:02:29 $
author:
   Rodney Waldhoff
author:
   Chuck Burdick
author:
   Ahimanikya Satapathy




Method Summary
protected  voidassertNotReadOnly(Database db)
     Throws an AxionException if the given Database is read-only.
protected  ObjectattemptToConvertValue(Object val, DataType type, ColumnIdentifier colid)
    
public  voidbindAll(Object[] vals)
     Sets the values of all bind variable within this command.
protected  voidbuildBindVariables()
    
public  voidclearBindings()
     Clears all bind variables within this command.
final protected  voidcreateResolveSelectableVisitor(Database db)
    
public  AxionResultSetexecuteQuery(Database db, boolean isReadOnly)
    
protected  IteratorgetBindVariableIterator()
     Returns an Iterator over all my BindVariable s, in the proper order.
protected  IteratorgetBindVariableIterator(Selectable sel)
    
final protected  FindBindVariableVisitorgetBindVariableVisitor()
    
public  ListgetBindVariables()
    
protected  ListgetColIdentifierList(Table table, TableIdentifier tid)
    
protected  intgetCommitSize(Database db)
    
final public  intgetEffectedRowCount()
    
final public  ResultSetgetResultSet()
    
protected  RowIteratorgetRowIterator(Database db, TableIdentifier tid, Table table, Selectable whereNode, boolean readOnly, RowDecorator dec)
    
final protected  RowDecoratormakeRowDecorator(Table table)
    
protected  voidpopulateDefaultValues(Database db, Table table, TableIdentifier tableId, RowDecorator dec)
    
protected  booleanpopulateSequenceColumns(Database db, Table table, Row row)
    
protected  voidresolveGeneratedColumns(Table table, TableIdentifier tableId, List cols)
    
protected  voidresolveGeneratedColumns(Table table, TableIdentifier tableId, List cols, boolean useDefaultValues)
    
protected  SelectableresolveSelectable(Selectable sel, Database db, List selected, TableIdentifier[] tables)
    
protected  SelectableresolveSelectable(Selectable sel, Database db, TableIdentifier[] tables)
    
protected  voidresolveSelectableList(List list, Database db, TableIdentifier table)
    
protected  voidresolveSelectableList(List list, Database db, TableIdentifier[] tables)
    
final protected  voidsetBindVariableVisitor(FindBindVariableVisitor visitor)
    
protected  voidsetDeferAllConstraintIfRequired(Table table)
    
final protected  voidsetEffectedRowCount(int count)
    
final protected  voidsetResultSet(ResultSet rset)
     If subclasses create a org.axiondb.jdbc.AxionResultSet upon execution, they should set it here so that they can support BaseAxionCommand.execute .
protected  voidupdateGeneratedValues(Database db, Table table, TableIdentifier tableId, Row row)
    



Method Detail
assertNotReadOnly
protected void assertNotReadOnly(Database db) throws AxionException(Code)
Throws an AxionException if the given Database is read-only.



attemptToConvertValue
protected Object attemptToConvertValue(Object val, DataType type, ColumnIdentifier colid) throws AxionException(Code)



bindAll
public void bindAll(Object[] vals) throws AxionException(Code)
Sets the values of all bind variable within this command.
Parameters:
  index - the one-based index of the variable
Parameters:
  value - the value to bind the variable to



buildBindVariables
protected void buildBindVariables()(Code)



clearBindings
public void clearBindings() throws AxionException(Code)
Clears all bind variables within this command.



createResolveSelectableVisitor
final protected void createResolveSelectableVisitor(Database db)(Code)



executeQuery
public AxionResultSet executeQuery(Database db, boolean isReadOnly) throws AxionException(Code)



getBindVariableIterator
protected Iterator getBindVariableIterator()(Code)
Returns an Iterator over all my BindVariable s, in the proper order. Default impl returns empty iterator.



getBindVariableIterator
protected Iterator getBindVariableIterator(Selectable sel)(Code)



getBindVariableVisitor
final protected FindBindVariableVisitor getBindVariableVisitor()(Code)



getBindVariables
public List getBindVariables()(Code)



getColIdentifierList
protected List getColIdentifierList(Table table, TableIdentifier tid) throws AxionException(Code)



getCommitSize
protected int getCommitSize(Database db)(Code)



getEffectedRowCount
final public int getEffectedRowCount()(Code)



getResultSet
final public ResultSet getResultSet()(Code)



getRowIterator
protected RowIterator getRowIterator(Database db, TableIdentifier tid, Table table, Selectable whereNode, boolean readOnly, RowDecorator dec) throws AxionException(Code)



makeRowDecorator
final protected RowDecorator makeRowDecorator(Table table)(Code)



populateDefaultValues
protected void populateDefaultValues(Database db, Table table, TableIdentifier tableId, RowDecorator dec) throws AxionException(Code)



populateSequenceColumns
protected boolean populateSequenceColumns(Database db, Table table, Row row) throws AxionException(Code)



resolveGeneratedColumns
protected void resolveGeneratedColumns(Table table, TableIdentifier tableId, List cols) throws AxionException(Code)



resolveGeneratedColumns
protected void resolveGeneratedColumns(Table table, TableIdentifier tableId, List cols, boolean useDefaultValues) throws AxionException(Code)



resolveSelectable
protected Selectable resolveSelectable(Selectable sel, Database db, List selected, TableIdentifier[] tables) throws AxionException(Code)



resolveSelectable
protected Selectable resolveSelectable(Selectable sel, Database db, TableIdentifier[] tables) throws AxionException(Code)



resolveSelectableList
protected void resolveSelectableList(List list, Database db, TableIdentifier table) throws AxionException(Code)



resolveSelectableList
protected void resolveSelectableList(List list, Database db, TableIdentifier[] tables) throws AxionException(Code)



setBindVariableVisitor
final protected void setBindVariableVisitor(FindBindVariableVisitor visitor)(Code)



setDeferAllConstraintIfRequired
protected void setDeferAllConstraintIfRequired(Table table)(Code)



setEffectedRowCount
final protected void setEffectedRowCount(int count)(Code)
If sublasses return a number of rows effected, then upon execution, they should set that number here so it can support BaseAxionCommand.execute



setResultSet
final protected void setResultSet(ResultSet rset)(Code)
If subclasses create a org.axiondb.jdbc.AxionResultSet upon execution, they should set it here so that they can support BaseAxionCommand.execute .
See Also:   BaseAxionCommand.getResultSet



updateGeneratedValues
protected void updateGeneratedValues(Database db, Table table, TableIdentifier tableId, Row row) throws AxionException(Code)



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.