Tagged Questions
bsddb is the Python interface to the Berkeley DB embedded database library.
2
votes
1answer
14 views
bsddb3.db.DBRunRecoveryError
I am using Python 2.7.2 and the bsddb3 module
I am just simple checking if the db contains an element, and if not then add it
For specific keys when I do a .get(hashkey) , then I receive this error ...
2
votes
3answers
1k views
Where can I find examples of bsddb in use?
I've spent hours searching for examples of how to use the bsddb module and the only ones that I've found are these (from here):
data = mydb.get(key)
if data:
doSomething(data)
...
1
vote
1answer
22 views
bsddb.open additional arguments
The bsddb module has three ways to open a db-file:
bsddb.hashopen(filename[, flag[, mode[, pgsize[, ffactor[, nelem[, cachesize[, lorder[, hflags]]]]]]]])
bsddb.btopen(filename[, flag[, mode[, ...
1
vote
3answers
42 views
python bsddb doesnt flush when removing entries
I got a python BSDDB database. Obviously, it's stored on the hard drive. When I remove some entries, the file on the drive does not get any smaller (consequently - it grows quite fast...)
utDelList ...
1
vote
3answers
3k views
How to Fix the Broken BSDDB Install in the Default Python Package on Mac OS X 10.5 Leopard?
Do the following on the default Python install on Mac OS X 10.5 (Leopard) w/ Developer Tools:
noel ~ : python
Python 2.5.1 (r251:54863, Jan 13 2009, 10:26:13)
[GCC 4.0.1 (Apple Inc. build 5465)] on ...
0
votes
1answer
24 views
bsddb in Python and Unix
I haven't heard of bsddb till recently.
http://www.oracle.com/us/products/database/berkeley-db/index.html
http://en.wikipedia.org/wiki/Berkeley_DB
I haven't been able to figure out what exactly it ...
0
votes
1answer
46 views
License question related to bsddb
I plan to use bsddb/pybsddb in a commercial product written in python for windows and linux. I also plan to use py2exe.
Yet I am not sure about the legal implications. I have read that commercial ...
0
votes
1answer
145 views
bsddb and reprepro (berkeley) database
I'm trying to read the database files created by reprepro. I don't have that much experience with bdb, so I might be confused here, but it looks like the database is layered in some way.
If I simply ...
0
votes
2answers
280 views
DEADLOCK_WRAP error when using Berkeley Db in python (bsddb)
I am using a berkdb to store a huge list of key-value pairs but for some reason when i try to access some of the data later i get this error:
try:
key = 'scrape011201-590652'
contenttext = ...
0
votes
1answer
119 views
Expressing multiple columns in berkeley db in python?
Say I have a simple table that contains username, firstname, lastname.
How do I express this in berkeley Db?
I'm currently using bsddb as the interface.
Cheers.