DBM is a simple UNIX database format. It uses a key-value storage and hashing for fast retrieval of the data by key.
2
votes
1answer
48 views
Shelve module in python not working: “db type cannot be determined”
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 = ...
0
votes
1answer
24 views
How to empty DBM file in Python efficiently?
There is a command in DBM module to delete the value stored at a key.
del d[key] # delete data stored at key (raises KeyError # if no such key)
But I cannot even iterate with this command, ...
1
vote
1answer
60 views
Tokyo Cabinet and cygwin
I am trying to install Tokyo Cabinet under Windows Cygwin but when I run ./configure I get the following error:
configure: error: regex.h is required
0
votes
0answers
101 views
Open dbm file and export to MS SQL database
I have an old UNIX system that save data in some file types like .dbm, .dbr, .dba and ...
Now I want to export data to MS SQL database. After long time spent to search, didn't find any tool that open ...
1
vote
0answers
82 views
Apache RewriteMap : DBM limit? [closed]
Migrating our web site from old url patterns to new ones, we have to maintain legacy urls and serve 301. We have a quite big number of documents to migrate, around one million.
Does somebody know any ...
3
votes
2answers
192 views
Working with files too big to be stored in memory?
I have a 20 gb file which looks like the following:
Read name, Start position, Direction, Sequence
Note that read names are not neccessarily unique.
E.g. a snippet of my file would look like
...
1
vote
1answer
142 views
DBM::Deep not working with perl hash reference
I am using a DBM::Deep hash object like so:
my $dbm = DBM::Deep->new(
file => "dbm.db",
locking => 1,
autoflush => 1,
type => ...
1
vote
1answer
153 views
DBM::Deep unexplained errors
So I am using DBM::Deep to share data between different forked processes. I set up my DBM::Deep object like this:
my $todo = DBM::Deep->new(
file => "urls.db",
locking => 1,
...
3
votes
2answers
212 views
Why use Ruby's DBM library
Is anyone aware of a practical (real-life) use of Ruby's DBM lib?
Is it an alternative to more "widespread" persistent key-value stores like Redis ?
0
votes
1answer
418 views
Getting wifi AP detailed information on Android
i used a command "iwlist wlan0 scan" on android virtual terminal application and get some information on AP's specially the noise dbm. Information are available if the phone is rooted im using ...
0
votes
1answer
70 views
Why isn't the data written to the database? (DBM, Python 3.2)
I have been working to learn the pickle and dbm python modules. I wrote some code that connected to a dbm database and wrote data and pickled info.
import dbm
import pickle
class PickleDB:
def ...
0
votes
1answer
169 views
Problems with dbm module under python 3 using Beaker
Im having trouble using Beaker on windows 7. Im using python 3, and i understand there are problems with the dbm module for python 3 under windows. The error im getting when i attempt to start my ...
0
votes
1answer
40 views
dbm instance is false
In python 2.6.5, an instance of dbm does not have a __nonzero__ or a __len__ method, so why does it evaluate false as a boolean?
>>> a = dbm.open( 'foo', 'c' )
>>> if a: print 'true'
...
2
votes
2answers
238 views
Perl DBM vs. Storable
for my current project i need to store a little database on disk, that i read once my program runs and write it once.
I have looked into perls DBM functionality and from what I understand it provides ...
4
votes
5answers
532 views
Any DBM for .NET?
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 ...
1
vote
1answer
2k views
Is Python DBM really fast?
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 ...
0
votes
1answer
164 views
What is a thread-safe DBM library in C?
Does anyone know about a thread-safe DBM-like library with a C API?
This is: a persistent hash-table that is thread-safe.
Any pointers would be appreciated!
2
votes
1answer
155 views
Linux - HTPASSWD file too big? (more than 2000 users)
I got here a quite huge HTPASSWD file which stores the users and their encrypted passwords. This file is used to authenticate users using HTTP.
I got more than 2000 entries (users) in this file. The ...
7
votes
1answer
823 views
Pros and cons of Perl DBM implementations? (GDBM, Berkeley DB, etc.) [closed]
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 tools like ...
2
votes
2answers
844 views
Using the dbm module in Python 3
I'm learning about database files and the dbm module in Python 3.1.3, and am having trouble using some of the methods from the anydbm module in Python 2.
The keys method works fine,
import dbm
db = ...
0
votes
1answer
521 views
How to use perl dbmopen on Windows and Linux
I have a perl script that runs fine on Linux but fails on Windows at this point:
$freq{total} = 0;
dbmopen(%freq,$dictfile,0666) || die "Error: Cannot open dbmfile $dictfile";
$dictfile points to ...
12
votes
3answers
1k views
Lightweight B-tree library for Java?
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, except I ...
2
votes
1answer
192 views
DBM::Deep: Problems with transactions
I've never done transactions (in terms of programming), therefore I don't know if there is something wrong with my script or something else:
#!/usr/bin/env perl
use warnings;
use 5.012;
use ...
1
vote
1answer
1k views
Oracle tns listener error
I've just installed Oracle 10g When I try to connect to oracle db i get an error:
could not start OracleOraHome92TNSListener
when i got to services and try to start it, it says that the file ...
0
votes
2answers
192 views
C Custom Database writing errors
I have an assignment for class that I have to write a program to read and write key, value pairs to disk. I am using a linked list to store the keys, and read in values whenever I need to from disk. ...
1
vote
3answers
943 views
Python DBM Module for Windows?
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 syntax ...
0
votes
2answers
83 views
Can I use a filehandle instead of a filename for creating DBM files?
I'm using MLDBM to persist some Perl data structures and I'm wondering if there's an alternative to the following:
tie %hash, "MLDBM", $dbm_file, O_CREAT | O_RDWR, 0644;
Primarily, I'd like to be ...
2
votes
2answers
520 views
Does Python's shelve module use memory-mapped IO?
Does anyone know if Python's shelve module uses memory-mapped IO?
Maybe that question is a bit misleading. I realize that shelve uses an underlying dbm-style module to do its dirty work. What are ...
1
vote
4answers
650 views
How do I access random element in a Perl DBM hash?
I have a Perl DBM hash containing a list of URLs that I want to pick randomly from to load balance spidering sites. As a result I want to pick a key at random, or select the nth element (so I can ...
1
vote
1answer
227 views
Why when using DBM with Ruby, db[1] = 2 is ok, but print db[1] will give error?
On Ruby, when using DBM
require "dbm"
db = DBM.open("somedata")
db[1] = 2 # ok
p db[1] # gives error
does anyone know db[1] = 2 is ok, but printing out db[1] will give error?
If it requires ...
0
votes
1answer
103 views
Must the keys and values in a Berkeley DB on Ruby be strings, not int, float, or any other type?
It seems that if I use Berkeley DB (DBM) on Ruby, the hash's keys and values must be strings? Can they be other data type?
require 'dbm'
d = DBM.open('test1')
d[1] = 2
d[123] = 456
d[2] = 2.34
...
0
votes
3answers
452 views
moving a perl script/dbm to a new server, and shifting out of dbm?
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 understanding ...
0
votes
1answer
99 views
dbm.error: db type is dbm.bsd, but the module is not available (Python 3.0)
I'm trying to open a shelve file that I created in 2.5, but I get the error I listed in the question title.
The data aren't essential, but I really want them.
Looking at the lib\dbm\__init__.py ...
0
votes
2answers
572 views
DBM or SQLite in PHP 5.x
We have a client whose site is hosted on a server (I don't want to disclose hosting company name) which does not provide DB functionality.
We have developed a very simple CMS based site but out ...
1
vote
3answers
554 views
Ideal string length for DBM database?
When using a DBM database (e.g. Berkeley or GDBM), is it better to store data using fewer long strings or more short strings? I can easily structure my data either way. I'm looking for 'better' in ...
0
votes
2answers
288 views
How can I store a timestamp in a DBM database?
I am implemening simple file-sharing service. Currently I use a file-based database (as it suits my needs).
# somewhere in my cgi script
sub first_run
{
my $dbh = ...
15
votes
9answers
8k views
Alternative to BerkeleyDB?
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 source ...
7
votes
3answers
721 views
How do I efficiently empty a Perl DBM file?
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 ...