Java Doc for RecordManager.java in  » Database-DBMS » JDBM » jdbm » 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 » JDBM » jdbm 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


jdbm.RecordManager

All known Subclasses:   jdbm.recman.BaseRecordManager,  jdbm.recman.CacheRecordManager,
RecordManager
public interface RecordManager (Code)
An interface to manages records, which are uninterpreted blobs of data.

The set of record operations is simple: fetch, insert, update and delete. Each record is identified using a "rowid" and contains a byte[] data block. Rowids are returned on inserts and you can store them someplace safe to be able to get back to them. Data blocks can be as long as you wish, and may have lengths different from the original when updating.
author:
   Alex Boisvert
author:
   Cees de Groot
version:
   $Id: RecordManager.java,v 1.3 2005/06/25 23:12:31 doomdark Exp $



Field Summary
final public static  intNAME_DIRECTORY_ROOT
     Reserved slot for name directory.


Method Summary
abstract public  voidclose()
     Closes the record manager.
abstract public  voidcommit()
     Commit (make persistent) all changes since beginning of transaction.
abstract public  voiddelete(long recid)
     Deletes a record.
abstract public  Objectfetch(long recid)
     Fetches a record using standard java object serialization.
Parameters:
  recid - the recid for the record that must be fetched.
abstract public  Objectfetch(long recid, Serializer serializer)
     Fetches a record using a custom serializer.
abstract public  longgetNamedObject(String name)
     Obtain the record id of a named object.
abstract public  longgetRoot(int id)
     Returns the indicated root rowid.
abstract public  intgetRootCount()
     Returns the number of slots available for "root" rowids.
abstract public  longinsert(Object obj)
     Inserts a new record using standard java object serialization.
Parameters:
  obj - the object for the new record.
abstract public  longinsert(Object obj, Serializer serializer)
     Inserts a new record using a custom serializer.
abstract public  voidrollback()
     Rollback (cancel) all changes since beginning of transaction.
abstract public  voidsetNamedObject(String name, long recid)
     Set the record id of a named object.
abstract public  voidsetRoot(int id, long rowid)
     Sets the indicated root rowid.
abstract public  voidupdate(long recid, Object obj)
     Updates a record using standard java object serialization.
abstract public  voidupdate(long recid, Object obj, Serializer serializer)
     Updates a record using a custom serializer.

Field Detail
NAME_DIRECTORY_ROOT
final public static int NAME_DIRECTORY_ROOT(Code)
Reserved slot for name directory.





Method Detail
close
abstract public void close() throws IOException(Code)
Closes the record manager.
throws:
  IOException - when one of the underlying I/O operations fails.



commit
abstract public void commit() throws IOException(Code)
Commit (make persistent) all changes since beginning of transaction.



delete
abstract public void delete(long recid) throws IOException(Code)
Deletes a record.
Parameters:
  recid - the rowid for the record that should be deleted.
throws:
  IOException - when one of the underlying I/O operations fails.



fetch
abstract public Object fetch(long recid) throws IOException(Code)
Fetches a record using standard java object serialization.
Parameters:
  recid - the recid for the record that must be fetched. the object contained in the record.
throws:
  IOException - when one of the underlying I/O operations fails.



fetch
abstract public Object fetch(long recid, Serializer serializer) throws IOException(Code)
Fetches a record using a custom serializer.
Parameters:
  recid - the recid for the record that must be fetched.
Parameters:
  serializer - a custom serializer the object contained in the record.
throws:
  IOException - when one of the underlying I/O operations fails.



getNamedObject
abstract public long getNamedObject(String name) throws IOException(Code)
Obtain the record id of a named object. Returns 0 if named object doesn't exist.



getRoot
abstract public long getRoot(int id) throws IOException(Code)
Returns the indicated root rowid.
See Also:   RecordManager.getRootCount



getRootCount
abstract public int getRootCount()(Code)
Returns the number of slots available for "root" rowids. These slots can be used to store special rowids, like rowids that point to other rowids. Root rowids are useful for bootstrapping access to a set of data.



insert
abstract public long insert(Object obj) throws IOException(Code)
Inserts a new record using standard java object serialization.
Parameters:
  obj - the object for the new record. the rowid for the new record.
throws:
  IOException - when one of the underlying I/O operations fails.



insert
abstract public long insert(Object obj, Serializer serializer) throws IOException(Code)
Inserts a new record using a custom serializer.
Parameters:
  obj - the object for the new record.
Parameters:
  serializer - a custom serializer the rowid for the new record.
throws:
  IOException - when one of the underlying I/O operations fails.



rollback
abstract public void rollback() throws IOException(Code)
Rollback (cancel) all changes since beginning of transaction.



setNamedObject
abstract public void setNamedObject(String name, long recid) throws IOException(Code)
Set the record id of a named object.



setRoot
abstract public void setRoot(int id, long rowid) throws IOException(Code)
Sets the indicated root rowid.
See Also:   RecordManager.getRootCount



update
abstract public void update(long recid, Object obj) throws IOException(Code)
Updates a record using standard java object serialization.
Parameters:
  recid - the recid for the record that is to be updated.
Parameters:
  obj - the new object for the record.
throws:
  IOException - when one of the underlying I/O operations fails.



update
abstract public void update(long recid, Object obj, Serializer serializer) throws IOException(Code)
Updates a record using a custom serializer.
Parameters:
  recid - the recid for the record that is to be updated.
Parameters:
  obj - the new object for the record.
Parameters:
  serializer - a custom serializer
throws:
  IOException - when one of the underlying I/O operations fails.



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