Simple BDB wrapper library for bdb
Go to file
Denis Knauf f6a10c9131 updates gemspec 2011-08-25 00:48:41 +02:00
lib reverted 2010-04-14 11:34:27 +02:00
.gitignore updates gemspec 2011-08-25 00:48:41 +02:00
AUTHORS little changes: metafiles 2010-03-20 23:20:35 +01:00
LICENSE license added 2010-01-30 15:07:09 +01:00
README.md Edited README.md via GitHub 2011-08-25 06:37:54 +08:00
Rakefile Update the Jeweler setup to use the new ruby-bdb homepage 2011-08-25 06:37:51 +08:00
VERSION Bump version to 0.0.10.1 (0.0.0.1 increment just to reflect the change in gem dependency) 2011-08-25 06:37:49 +08:00

README.md

Dependencies

You need first the Bdb and of course ruby.

Download

via git:

git clone git://github.com/ruby-bdb/sbdb

Install

gem build sbdb.gemspec
gem install sbdb-*.gem

Usage

First, open environment and database

require 'sbdb'
Dir.mkdir 'newenv'  rescue Errno::EEXIST
env = SBDB::Env.new 'newenv', SBDB::CREATE
db = env.open SBDB::Btree, 'newdb.db', :flags => SBDB::CREATE

It works nearly like a Ruby-Hash:

db['key'] = 'value'
db['key']		# => 'value'
db.to_hash		# => {'key'=>'value'}
db.map {|k, v| [k, v].join ' => '}		# => ["key => value"]
db.count		# => 1

SBDB::DB#each uses a SBDB::Cursor:

cursor = db.cursor
cursor.each {|k,v| puts "#{k}: ${v}" }

Don't forget to close everything, you've opened!

cursor.close
db.close
env.close

But you can use a lambda to ensure to close everything:

SBDB::Env.new( 'newenv', SBDB::CREATE) do |env|
	env.open SBDB::Btree, 'newdb.db', :flags => SBDB::CREATE do |db|
		db.to_hash
	end
end

SBDB::DB#to_hash creates a cursor and close it later.