Source Code Cross Referenced 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 Referenced  Class Diagram Java Document (Java Doc) 


01:        package net.xoetrope.optional.data.sql;
02:
03:        import java.sql.SQLException;
04:        import java.sql.ResultSetMetaData;
05:
06:        /**
07:         * A class that extends the DatabaseTable class by caching the data from the
08:         * query result set.
09:         * <p>Copyright (c) Xoetrope Ltd. 2001-2003</p>
10:         * $Revision: 1.2 $
11:         */
12:        public class CachedDatabaseTable extends DatabaseTable {
13:            protected Object[] rowData;
14:
15:            /**
16:             * Setup a table with the full sql statement
17:             * @param sqlStr the full SQL statement
18:             * @param connName the connection name
19:             * @param writable
20:             */
21:            public CachedDatabaseTable(String sqlStr, String connName,
22:                    boolean writable) {
23:                super (sqlStr, connName, writable);
24:            }
25:
26:            /**
27:             * Create a new database table wrapper
28:             * @param tableName the table name
29:             * @param fields the fields to retrieve
30:             * @param where the where clause to use in the query
31:             * @param conn the connection name
32:             * @param allowWrites true if the result set is to be updatable
33:             */
34:            public CachedDatabaseTable(String tableName, String fields,
35:                    String where, String connName, boolean writable) {
36:                super (tableName, fields, where, connName, writable);
37:            }
38:
39:            /**
40:             * Internally store the latest result set data
41:             */
42:            protected void cacheData() {
43:                try {
44:                    rowData = new Object[numRows];
45:
46:                    ResultSetMetaData rsmd = RS.getMetaData();
47:                    int columnType[] = new int[numFields];
48:                    for (int k = 0; k < numFields; k++)
49:                        columnType[k] = rsmd.getColumnType(k + 1);
50:                    for (int j = 0; j < numRows; j++) {
51:                        String temp[] = new String[numFields];
52:                        rowData[j] = temp;
53:                        for (int k = 0; k < numFields; k++) {
54:                            if (columnType[k] == java.sql.Types.FLOAT)
55:                                temp[k] = new String(Float.toString(RS
56:                                        .getFloat(k + 1)));
57:                            else
58:                                temp[k] = RS.getString(k + 1);
59:                        }
60:                        RS.next();
61:                    }
62:                } catch (SQLException ex) {
63:                    ex.printStackTrace();
64:                }
65:            }
66:
67:            /**
68:             * Get a field value from the current row
69:             * @param fieldIdx the field (zero based) to retrieve
70:             * @return
71:             */
72:            public String getValue(int fieldIdx) {
73:                return ((String[]) rowData[currentRow])[fieldIdx];
74:            }
75:
76:            /**
77:             * Get a field value
78:             * @param rowIdx the row (zero based) to retrieve
79:             * @param fieldIdx the field (zero based) to retrieve
80:             * @return
81:             */
82:            public String getValue(int rowIdx, int fieldIdx) {
83:                return ((String[]) rowData[rowIdx])[fieldIdx];
84:            }
85:
86:            /**
87:             * Set the cache value for a field. This method does not write the data back
88:             * to the database.
89:             * @param rowIdx the row (zero based) to retrieve
90:             * @param fieldIdx the field (zero based) to retrieve
91:             * @return
92:             */
93:            public void setValue(int fieldIdx, String value) {
94:                ((String[]) rowData[currentRow])[fieldIdx] = value;
95:                dirty = true;
96:                super.setValue(currentRow, fieldIdx, value);
97:            }
98:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.