Berkeley DB
version 4.2.52

Uses of Class
com.sleepycat.bdb.DataView

Packages that use DataView
com.sleepycat.bdb Core database classes for defining an environment, creating data stores, and running transactions
[reference guide] 
 

Uses of DataView in com.sleepycat.bdb
 

Methods in com.sleepycat.bdb that return DataView
 DataView DataView.keySetView()
          Return a new key-set view derived from this view by setting the entity and value binding to null.
 DataView DataView.valueSetView()
          Return a new value-set view derived from this view by setting the key binding to null.
 DataView DataView.valueSetView(Object singleKey)
          Return a new value-set view for single key range.
 DataView DataView.subView(Object beginKey, boolean beginInclusive, Object endKey, boolean endInclusive, DataBinding keyBinding)
          Return a new value-set view for key range, optionally changing the key binding.
 DataView DataView.dirtyReadView(boolean enable)
          Returns a new view with a specified dirtyRead setting.
 DataView DataView.autoCommitView(boolean enable)
          Returns a new view with a specified autoCommit setting.
 DataView DataCursor.getView()
          Returns the view for this cursor, as specified to the constructor.
 

Methods in com.sleepycat.bdb with parameters of type DataView
 DataCursor DataView.join(DataView[] indexViews, Object[] indexKeys, boolean presorted)
          Returns a cursor for this view that reads only records having the specified index key values.
 

Constructors in com.sleepycat.bdb with parameters of type DataView
DataCursor(DataView view, boolean writeAllowed)
          Creates a cursor for a given view.
DataCursor(DataView view, boolean writeAllowed, Object singleKey)
          Creates a cursor for a given view and single key range.
DataCursor(DataView view, boolean writeAllowed, Object beginKey, boolean beginInclusive, Object endKey, boolean endInclusive)
          Creates a cursor for a given view and key range.
 


Berkeley DB
version 4.2.52

Copyright (c) 1996-2003 Sleepycat Software, Inc. - All rights reserved.