dbm Questions

2

I installed python3.6 in windows machine. And get below error while open my.db file. my.db file created by my program in ubuntu16.04 in python3.6, using shelve module. In [1]: import shelve In [...
Anticipation asked 23/6, 2018 at 7:8

3

I use Python 3.6 in an anaconda environment. I installed GDBM with conda install gdbm The installation went well, however I can't use dbm.gnu from Python: ModuleNotFoundError: No module named ...
Raddi asked 5/3, 2018 at 15:21

1

When doing import dbm.gnu on a standard Python 3.7.6 (64) for Windows, I get: File "C:\Python37\lib\dbm\gnu.py", line 3, in from _gdbm import * ModuleNotFoundError: No module named '_g...
Saprophagous asked 19/11, 2020 at 10:26

1

I am currently trying to setup a Python monitoring tool, called Flower, to check whether tasks are being successfully processed. Currently this is my setup is as follows: ubuntu 18.04.2 LTS (GNU/...
Brakesman asked 9/8, 2019 at 18:37

2

Solved

I was thinking that native DBM of Python should be quite faster than NOSQL databases such as Tokyo Cabinet, MongoDB, etc (as Python DBM has lesser features and options; i.e. a simpler system). I te...
Roseleeroselia asked 12/10, 2011 at 9:56

2

Solved

I'm trying to open a .db file that is of type db.gnu. Attempting to open it with the built-in Python 3 module dbm fails with the message: dbm.error: db type is dbm.gnu, but the module is not avail...
Herren asked 8/2, 2018 at 2:44

4

Solved

I would like to use the dbm module on my Windows machine, but it is currently only supported on Unix. http://docs.python.org/library/dbm.html Does anyone know of a similar module with similar synt...
Allina asked 4/8, 2010 at 17:51

4

Solved

Can anyone recommend a lightweight, fast, and hopefully stable B-tree (or similar) library for Java? Essentially I'm looking for an on-disk map; something along the lines of BerkeleyDB JE, e...
Landgravine asked 23/3, 2011 at 19:20

3

I am trying to make a simple password-storing program in Python, and it seems pretty simple so I am wondering if I am using shelve wrong. I have the main .py file: import shelve passwords = she...
Arbe asked 23/5, 2013 at 2:56

9

I'm looking for a dbm-like library that I can use in place of Berkeley DB, which I'm currently using. My main reason for switching is the licensing fees for BDB are pretty high (free for open...
Ia asked 4/11, 2008 at 3:44

5

Solved

I'm looking for a simple DBM library such as BerkeleyDB or Kyoto Cabinet, but natively working for .NET. I need to manage more than one million records (maybe ten millions), and possibly in a hiera...
Gossip asked 12/10, 2011 at 19:23

1

I've used GDBM and Berkeley DB/DB_File for earlier Perl projects, but should I be using them for new ones? What are the pros and cons of different Perl DBM implementations? (Related: Are too...
Rattletrap asked 27/6, 2011 at 17:33

3

I've been tasked with mirroring a site onto a new server. The old site has a few Perl scripts that, as far as I can see internally (i know nothing about Perl, though I have a pretty good understand...
Junior asked 11/11, 2009 at 21:48

3

Solved

I've inherited a piece of code with a snippet which empties the database as follows: dbmopen (%db,"file.db",0666); foreach $key (keys %db) { delete $db{$key}; } dbmclose (%db); This is usually ...
Tem asked 13/10, 2008 at 4:42
1

© 2022 - 2025 — McMap. All rights reserved.