Java Doc for CachedDatabaseTable.java in  » XML-UI » XUI » net » xoetrope » optional » data » sql » 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 » XML UI » XUI » net.xoetrope.optional.data.sql 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.xoetrope.optional.data.sql.DatabaseTable
      net.xoetrope.optional.data.sql.CachedDatabaseTable

CachedDatabaseTable
public class CachedDatabaseTable extends DatabaseTable (Code)
A class that extends the DatabaseTable class by caching the data from the query result set.

Copyright (c) Xoetrope Ltd. 2001-2003

$Revision: 1.2 $


Field Summary
protected  Object[]rowData
    

Constructor Summary
public  CachedDatabaseTable(String sqlStr, String connName, boolean writable)
    
public  CachedDatabaseTable(String tableName, String fields, String where, String connName, boolean writable)
    

Method Summary
protected  voidcacheData()
    
public  StringgetValue(int fieldIdx)
    
public  StringgetValue(int rowIdx, int fieldIdx)
    
public  voidsetValue(int fieldIdx, String value)
     Set the cache value for a field.

Field Detail
rowData
protected Object[] rowData(Code)




Constructor Detail
CachedDatabaseTable
public CachedDatabaseTable(String sqlStr, String connName, boolean writable)(Code)
Setup a table with the full sql statement
Parameters:
  sqlStr - the full SQL statement
Parameters:
  connName - the connection name
Parameters:
  writable -



CachedDatabaseTable
public CachedDatabaseTable(String tableName, String fields, String where, String connName, boolean writable)(Code)
Create a new database table wrapper
Parameters:
  tableName - the table name
Parameters:
  fields - the fields to retrieve
Parameters:
  where - the where clause to use in the query
Parameters:
  conn - the connection name
Parameters:
  allowWrites - true if the result set is to be updatable




Method Detail
cacheData
protected void cacheData()(Code)
Internally store the latest result set data



getValue
public String getValue(int fieldIdx)(Code)
Get a field value from the current row
Parameters:
  fieldIdx - the field (zero based) to retrieve



getValue
public String getValue(int rowIdx, int fieldIdx)(Code)
Get a field value
Parameters:
  rowIdx - the row (zero based) to retrieve
Parameters:
  fieldIdx - the field (zero based) to retrieve



setValue
public void setValue(int fieldIdx, String value)(Code)
Set the cache value for a field. This method does not write the data back to the database.
Parameters:
  rowIdx - the row (zero based) to retrieve
Parameters:
  fieldIdx - the field (zero based) to retrieve



Fields inherited from net.xoetrope.optional.data.sql.DatabaseTable
final public static int NORMAL_UPDATE(Code)(Java Doc)
final public static int OPTIMISTIC_UPDATE(Code)(Java Doc)
final public static int PARANOID_UPDATE(Code)(Java Doc)
protected ResultSet RS(Code)(Java Doc)
protected static boolean caseSensitive(Code)(Java Doc)
protected String connName(Code)(Java Doc)
protected DataConnection connection(Code)(Java Doc)
protected int currentRow(Code)(Java Doc)
protected String defaultWhereClause(Code)(Java Doc)
protected boolean dirty(Code)(Java Doc)
protected boolean distinct(Code)(Java Doc)
protected int numFields(Code)(Java Doc)
protected int numRows(Code)(Java Doc)
protected String orderField(Code)(Java Doc)
protected String queryFields(Code)(Java Doc)
protected String queryTable(Code)(Java Doc)
protected String sqlStatement(Code)(Java Doc)
protected boolean writable(Code)(Java Doc)

Methods inherited from net.xoetrope.optional.data.sql.DatabaseTable
protected void cacheData()(Code)(Java Doc)
public int executeUpdate(String sql) throws Exception(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
public void first()(Code)(Java Doc)
public String getConnName()(Code)(Java Doc)
public int getCurrentRow()(Code)(Java Doc)
public int getFieldIndex(String fieldName)(Code)(Java Doc)
public String getFieldName(int fieldIdx)(Code)(Java Doc)
public String getFields()(Code)(Java Doc)
public int getNumFields()(Code)(Java Doc)
public int getNumRows()(Code)(Java Doc)
public String getSQL(String where)(Code)(Java Doc)
public String getTableName()(Code)(Java Doc)
public void getTableName(String name)(Code)(Java Doc)
public String getValue(int fieldIdx)(Code)(Java Doc)
public String getValue(int rowIdx, int fieldIdx)(Code)(Java Doc)
public String getWhereClause()(Code)(Java Doc)
public boolean isDistinct()(Code)(Java Doc)
public void last()(Code)(Java Doc)
public boolean next()(Code)(Java Doc)
public boolean previous()(Code)(Java Doc)
public void retrieve()(Code)(Java Doc)
public void retrieve(String where)(Code)(Java Doc)
public static void setCaseSensitive(boolean state)(Code)(Java Doc)
public void setCurrentRow(int idx)(Code)(Java Doc)
public void setDistinct(boolean isDistinct)(Code)(Java Doc)
public void setOrderField(String fld)(Code)(Java Doc)
public void setValue(int rowIdx, int fieldIdx, String value)(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.