Python database objects-- dbhash.first() and etc.

http://docs.python.org/2/library/dbhash.html?highlight=.first#database-objects

 

11.10.1. Database Objects

The database objects returned by open() provide the methods common to all the DBM-style databases and mapping objects. The following methods are available in addition to the standard methods.

dbhash.first()

It’s possible to loop over every key/value pair in the database using this method and thenext() method. The traversal is ordered by the databases internal hash values, and won’t be sorted by the key values. This method returns the starting key.

dbhash.last()

Return the last key/value pair in a database traversal. This may be used to begin a reverse-order traversal; see previous().

dbhash.next()

Returns the key next key/value pair in a database traversal. The following code prints every key in the database db, without having to create a list in memory that contains them all:

print db.first()
for i in xrange(1, len(db)):
    print db.next()
dbhash.previous()

Returns the previous key/value pair in a forward-traversal of the database. In conjunction with last(), this may be used to implement a reverse-order traversal.

dbhash.sync()

This method forces any unwritten data to be written to the disk.

posted @ 2013-04-17 17:17  spaceship9  阅读(219)  评论(0编辑  收藏  举报