Java Doc for DatabaseEventListener.java in  » Database-DBMS » h2database » org » h2 » api » 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 » h2database » org.h2.api 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.h2.api.DatabaseEventListener

All known Subclasses:   org.h2.test.unit.TestExit,  org.h2.test.jdbc.TestDatabaseEventListener,  org.h2.test.db.TestMultiConn,  org.h2.test.db.TestOpenClose,  org.h2.server.web.WebThread,  org.h2.samples.ShowProgress,  org.h2.test.db.TestListener,
DatabaseEventListener
public interface DatabaseEventListener extends EventListener(Code)
A class that implements this interface can get notified about exceptions and other events. A database event listener can be registered when connecting to a database. Example database URL: jdbc:h2:test;DATABASE_EVENT_LISTENER='com.acme.DbListener'


Field Summary
 intSTATE_BACKUP_FILE
     This state is used during the BACKUP command.
 intSTATE_CREATE_INDEX
     This state is used when re-creating an index.
 intSTATE_RECOVER
     This state is used when re-applying the transaction log or rolling back uncommitted transactions.
 intSTATE_SCAN_FILE
     This state is used when scanning the data or index file.


Method Summary
 voidclosingDatabase()
     This method is called before the database is closed normally.
 voiddiskSpaceIsLow(long stillAvailable)
     This method is called if the disk space is very low. One strategy is to inform the user and wait for it to clean up disk space. Another strategy is to send an email to the administrator in this method and then throw a SQLException.
 voidexceptionThrown(SQLException e, String sql)
    
 voidinit(String url)
     This method is called just after creating the object.
 voidopened()
     This method is called after the database has been opened.
 voidsetProgress(int state, String name, int x, int max)
     This method is called for long running events, such as recovering, scanning a file or building an index.

Field Detail
STATE_BACKUP_FILE
int STATE_BACKUP_FILE(Code)
This state is used during the BACKUP command.



STATE_CREATE_INDEX
int STATE_CREATE_INDEX(Code)
This state is used when re-creating an index.



STATE_RECOVER
int STATE_RECOVER(Code)
This state is used when re-applying the transaction log or rolling back uncommitted transactions.



STATE_SCAN_FILE
int STATE_SCAN_FILE(Code)
This state is used when scanning the data or index file.





Method Detail
closingDatabase
void closingDatabase()(Code)
This method is called before the database is closed normally. It is save to connect to the database and execute statements at this point, however the connection must be closed before the method returns.



diskSpaceIsLow
void diskSpaceIsLow(long stillAvailable) throws SQLException(Code)
This method is called if the disk space is very low. One strategy is to inform the user and wait for it to clean up disk space. Another strategy is to send an email to the administrator in this method and then throw a SQLException. The database should not be accessed from within this method (even to close it).
Parameters:
  stillAvailable - the estimated space that is still available, in bytes
throws:
  SQLException - if the operation should be cancelled



exceptionThrown
void exceptionThrown(SQLException e, String sql)(Code)
This method is called if an exception occurred during database recovery
Parameters:
  e - the exception
Parameters:
  sql - the SQL statement



init
void init(String url)(Code)
This method is called just after creating the object. This is done when opening the database if the listener is specified in the database URL, but may be later if the listener is set at runtime with the SET SQL statement.
Parameters:
  url - - the database URL



opened
void opened()(Code)
This method is called after the database has been opened. It is save to connect to the database and execute statements at this point.



setProgress
void setProgress(int state, String name, int x, int max)(Code)
This method is called for long running events, such as recovering, scanning a file or building an index.
Parameters:
  state - the state
Parameters:
  name - the object name
Parameters:
  x - the current position
Parameters:
  max - the highest value



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.