Java Doc for DatabaseResources.java in  » Web-Framework » rife-1.6.1 » com » uwyn » rife » resources » 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 » Web Framework » rife 1.6.1 » com.uwyn.rife.resources 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.uwyn.rife.database.DbQueryManager
      com.uwyn.rife.resources.DatabaseResources

All known Subclasses:   com.uwyn.rife.resources.databasedrivers.generic,
DatabaseResources
abstract public class DatabaseResources extends DbQueryManager implements ResourceFinder,ResourceWriter(Code)
This class offers ResourceFinder and ResourceWriter capabilities for resources that are stored in a database. The relevant database is specified through a Datasource/code> instance at construction.

While the table can be configured through the TABLE_RESOURCES configuration setting, the structure of the table is fixed. It can be installed with the install() method and removed with the remove() method. The latter will implicitely erase all the resources that have been stored in the database table.
author:
   Geert Bevin (gbevin[remove] at uwyn dot com)
version:
   $Revision: 3634 $
See Also:   com.uwyn.rife.resources.ResourceFinder
since:
   1.0



Field Summary
final protected static  StringCOLUMN_CONTENT
    
final protected static  StringCOLUMN_MODIFIED
    
final protected static  StringCOLUMN_NAME
    
final protected static  StringPROTOCOL
    

Constructor Summary
protected  DatabaseResources(Datasource datasource)
     Creates a new instance according to the provided datasource.

Method Summary
protected  void_addResource(Insert addResource, String name, String content)
    
protected  String_getContent(Select getResourceContent, URL resource, String encoding)
    
protected  long_getModificationTime(Select getResourceModified, URL resource)
    
protected  URL_getResource(Select hasResource, String name)
    
protected  boolean_install(CreateTable createTable)
    
protected  boolean_remove(DropTable dropTable)
    
protected  boolean_removeResource(Delete removeResource, String name)
    
protected  boolean_updateResource(Update updateResource, String name, String content)
    
protected  ResultType_useStream(Select getResourceContent, URL resource, InputStreamUser user)
    
public  StringgetContent(String name)
    
public  StringgetContent(String name, String encoding)
    
public  StringgetContent(URL resource)
    
public  longgetModificationTime(String name)
    
abstract public  booleaninstall()
     Installs the database structure that's needed to store and retrieve resources in and from a database.
abstract public  booleanremove()
     Removes the database structure that's needed to store and retrieve resources in and from a database.
public  ResultTypeuseStream(String name, InputStreamUser user)
    

Field Detail
COLUMN_CONTENT
final protected static String COLUMN_CONTENT(Code)



COLUMN_MODIFIED
final protected static String COLUMN_MODIFIED(Code)



COLUMN_NAME
final protected static String COLUMN_NAME(Code)



PROTOCOL
final protected static String PROTOCOL(Code)




Constructor Detail
DatabaseResources
protected DatabaseResources(Datasource datasource)(Code)
Creates a new instance according to the provided datasource.
Parameters:
  datasource - the Datasource instance that defines thedatabase that will be used as resources storage.
since:
   1.0




Method Detail
_addResource
protected void _addResource(Insert addResource, String name, String content) throws ResourceWriterErrorException(Code)



_getContent
protected String _getContent(Select getResourceContent, URL resource, String encoding) throws ResourceFinderErrorException(Code)



_getModificationTime
protected long _getModificationTime(Select getResourceModified, URL resource)(Code)



_getResource
protected URL _getResource(Select hasResource, String name)(Code)



_install
protected boolean _install(CreateTable createTable) throws ResourceWriterErrorException(Code)



_remove
protected boolean _remove(DropTable dropTable) throws ResourceWriterErrorException(Code)



_removeResource
protected boolean _removeResource(Delete removeResource, String name) throws ResourceWriterErrorException(Code)



_updateResource
protected boolean _updateResource(Update updateResource, String name, String content) throws ResourceWriterErrorException(Code)



_useStream
protected ResultType _useStream(Select getResourceContent, URL resource, InputStreamUser user) throws ResourceFinderErrorException, InnerClassException(Code)



getContent
public String getContent(String name) throws ResourceFinderErrorException(Code)



getContent
public String getContent(String name, String encoding) throws ResourceFinderErrorException(Code)



getContent
public String getContent(URL resource) throws ResourceFinderErrorException(Code)



getModificationTime
public long getModificationTime(String name) throws ResourceFinderErrorException(Code)



install
abstract public boolean install() throws ResourceWriterErrorException(Code)
Installs the database structure that's needed to store and retrieve resources in and from a database.
exception:
  ResourceFinderErrorException - when an error occurred during theinstallation



remove
abstract public boolean remove() throws ResourceWriterErrorException(Code)
Removes the database structure that's needed to store and retrieve resources in and from a database.
exception:
  ResourceFinderErrorException - when an error occurred during theremoval



useStream
public ResultType useStream(String name, InputStreamUser user) throws ResourceFinderErrorException, InnerClassException(Code)



Methods inherited from com.uwyn.rife.database.DbQueryManager
public Object clone()(Code)(Java Doc)
public boolean executeFetchAll(ReadQuery query, DbRowProcessor rowProcessor) throws DatabaseException(Code)(Java Doc)
public boolean executeFetchAll(ReadQuery query, DbRowProcessor rowProcessor, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public List<BeanType> executeFetchAllBeans(ReadQuery query, Class<BeanType> beanClass) throws DatabaseException(Code)(Java Doc)
public List<BeanType> executeFetchAllBeans(ReadQuery query, Class<BeanType> beanClass, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public boolean executeFetchFirst(ReadQuery query, DbRowProcessor rowProcessor) throws DatabaseException(Code)(Java Doc)
public boolean executeFetchFirst(ReadQuery query, DbRowProcessor rowProcessor, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public BeanType executeFetchFirstBean(ReadQuery query, Class<BeanType> beanClass) throws DatabaseException(Code)(Java Doc)
public BeanType executeFetchFirstBean(ReadQuery query, Class<BeanType> beanClass, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public boolean executeGetFirstBoolean(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public boolean executeGetFirstBoolean(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public byte executeGetFirstByte(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public byte executeGetFirstByte(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public byte[] executeGetFirstBytes(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public byte[] executeGetFirstBytes(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Date executeGetFirstDate(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public java.sql.Date executeGetFirstDate(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Date executeGetFirstDate(ReadQuery query, Calendar cal) throws DatabaseException(Code)(Java Doc)
public java.sql.Date executeGetFirstDate(ReadQuery query, Calendar cal, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public double executeGetFirstDouble(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public double executeGetFirstDouble(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public float executeGetFirstFloat(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public float executeGetFirstFloat(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public int executeGetFirstInt(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public int executeGetFirstInt(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public long executeGetFirstLong(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public long executeGetFirstLong(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public short executeGetFirstShort(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public short executeGetFirstShort(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public String executeGetFirstString(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public String executeGetFirstString(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Time executeGetFirstTime(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public java.sql.Time executeGetFirstTime(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Time executeGetFirstTime(ReadQuery query, Calendar cal) throws DatabaseException(Code)(Java Doc)
public java.sql.Time executeGetFirstTime(ReadQuery query, Calendar cal, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Timestamp executeGetFirstTimestamp(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public java.sql.Timestamp executeGetFirstTimestamp(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public java.sql.Timestamp executeGetFirstTimestamp(ReadQuery query, Calendar cal) throws DatabaseException(Code)(Java Doc)
public java.sql.Timestamp executeGetFirstTimestamp(ReadQuery query, Calendar cal, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public boolean executeHasResultRows(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public boolean executeHasResultRows(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public ResultType executeQuery(ReadQuery query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public ResultType executeQuery(ReadQuery query, DbResultSetHandler handler) throws DatabaseException(Code)(Java Doc)
public DbStatement executeQuery(ReadQuery query) throws DatabaseException(Code)(Java Doc)
public int executeUpdate(String sql) throws DatabaseException(Code)(Java Doc)
public int executeUpdate(Query query) throws DatabaseException(Code)(Java Doc)
public int executeUpdate(Query query, DbPreparedStatementHandler handler) throws DatabaseException(Code)(Java Doc)
public ResultType executeUseFirstAsciiStream(ReadQuery query, InputStreamUser user) throws DatabaseException, InnerClassException(Code)(Java Doc)
public ResultType executeUseFirstAsciiStream(ReadQuery query, InputStreamUser user, DbPreparedStatementHandler handler) throws DatabaseException, InnerClassException(Code)(Java Doc)
public ResultType executeUseFirstBinaryStream(ReadQuery query, InputStreamUser user) throws DatabaseException, InnerClassException(Code)(Java Doc)
public ResultType executeUseFirstBinaryStream(ReadQuery query, InputStreamUser user, DbPreparedStatementHandler handler) throws DatabaseException, InnerClassException(Code)(Java Doc)
public ResultType executeUseFirstCharacterStream(ReadQuery query, ReaderUser user) throws DatabaseException, InnerClassException(Code)(Java Doc)
public ResultType executeUseFirstCharacterStream(ReadQuery query, ReaderUser user, DbPreparedStatementHandler handler) throws DatabaseException, InnerClassException(Code)(Java Doc)
public boolean fetch(ResultSet resultSet) throws DatabaseException(Code)(Java Doc)
public boolean fetch(ResultSet resultSet, DbRowProcessor rowProcessor) throws DatabaseException(Code)(Java Doc)
public boolean fetchAll(ResultSet resultSet, DbRowProcessor rowProcessor) throws DatabaseException(Code)(Java Doc)
public DbConnection getConnection() throws DatabaseException(Code)(Java Doc)
public Datasource getDatasource()(Code)(Java Doc)
public ResultType inTransaction(DbTransactionUser user) throws InnerClassException, DatabaseException(Code)(Java Doc)
public ResultType reserveConnection(DbConnectionUser user) throws InnerClassException, DatabaseException(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.