473,785 Members | 2,919 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Some Berkeley DB questions (being maintained? queries?)

Hi!

I have some questions. I'm evaluating berkeley db as a embeddable
storage engine for a project I'm working on.

My questions:

1. Now that Berkeley DB is part of Oracle, is it still being
maintained? Is it free?
2. Are there good python libraries for bdb available, that are being
maintained?
3. Is it possible to query a berkeley db database? Just simple
queries like: find me all items where key "name" = "John"
4. What are good, stable alternatives?
thanks,
herb
Jan 17 '08 #1
3 1731
He*******@googl email.com wrote:
1. Now that Berkeley DB is part of Oracle, is it still being
maintained? Is it free?
Berkeley DB is owned by Oracle, but it is seperate from the Oracle RDBMS
product. Yes, it is free.
2. Are there good python libraries for bdb available, that
are being maintained?
I would like to know the answer to this question too--if you have used
the pybsddb/bsddb.db module, please share your experience.
3. Is it possible to query a berkeley db database? Just
simple queries like: find me all items where key "name" = "John"
That is basically the only kind of query that a Berkeley DB database can
do: key [<|=|>] value.
4. What are good, stable alternatives?
That depends soley on your requirements. Berkeley DB is actually one of
the most complicated persistence solutions. It is more complex than
SQLite, and WAY more complex than gdbm, for example. If you don't need
all its functionality, especially its multi-user capabilities, then I
recommend using something simpler. However, if you DO need its
multi-user cabailities or its advanced features like secondary indexes,
then it is better to use Berkeley DB than to re-invent it.

- Brian

Jan 17 '08 #2
>>>>"Brian" == Brian Smith <br***@briansmi th.orgwrites:
BrianHe*******@googl email.com wrote:
>2. Are there good python libraries for bdb available, that
are being maintained?
BrianI would like to know the answer to this question too--if you have
Brianused the pybsddb/bsddb.db module, please share your experience.

I used it a little in mid-2006. I ran into one issue that I resolved by
looking at the C source and fiddling with the Python interface. I sent mail
to the people mentioned in the bsddb README file. One (Barry Warsaw)
answered to say he hadn't looked at the code in a couple of years and was
probably not the person to contact.
>4. What are good, stable alternatives?
>From memory, the Chandler project also has an interface to BSD DB, but I
don't remember any details at all.

I'm also interested in any ongoing or planned work on the Python interface.

Terry
Jan 18 '08 #3
In article <ma************ *************** *********@pytho n.org>,
Terry Jones <te***@jon.eswr ote:
>
I'm also interested in any ongoing or planned work on the Python interface.
Someone recently volunteered to take over primary maintenance, but I
can't find the mailing list post.
--
Aahz (aa**@pythoncra ft.com) <* http://www.pythoncraft.com/

"All problems in computer science can be solved by another level of
indirection." --Butler Lampson
Jan 18 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2108
by: Dan Olsen | last post by:
I am trying to install and use Berkeley XML DB with Python. However, I keep getting errors. The weblog at Sleepy Cat said to build Python with the latest version of Berkeley DB. I can't get it to build with it. Does anyone have any good directions on how to get Berkeley XML DB running with Python? I have followed Sleepy Cat's installation instructions but have been unable to get it to work thus far. Dan
3
1531
by: Ross | last post by:
Hi I have bought the book 'Zen of CSS Design' but need some basic tips or links to start me off. I only have basic knowledge where I have set up styles in dreamwever like this ..this_style
2
2022
by: vulcaned | last post by:
I'm thinking I might want to move the back-end to one of my Access97 applications to SQLServer instead of continuing to use Access jet but before I start/do that I have several questions I'm hoping can be answered as I have not yet used SQLServer for a back-end. 1. Just moving my tables from a jet back-end to a SQLServer back-end and not changing anything else will not improve performance, True???? 2. If I create pass-thru queries can...
34
5072
by: Karam Chand | last post by:
Hello I have been working with Access and MySQL for pretty long time. Very simple and able to perform their jobs. I dont need to start a flame anymore :) I have to work with PGSQL for my companies current project. I have been able to setup postgresql in my rh box and
1
1281
by: Ron | last post by:
Hi All, First question is what to do if somehow security was run on a database I've designed and yet I have NO idea how or when it was run? There is a "system1.mdw" file sitting there, and I think it's been there since day one when I started playing around with Access 2000 back a couple years ago. Any way to circumvent the security settings? Cancel the settings so they aren't even there (as, I don't need them anyway...)? The reason...
5
1514
by: SharpSmith | last post by:
hi all the question is more related to architecture and practices and I'll appreciate any opinion i work with asp net 1/2 few years and with any project we developing we meet performance issues maybe the problems is our methods or maybe we do not do the right things but it seems that view state and heavy page model really make performance bad also, when you work with asp.net it very easy to start building your site component-oriented...
0
1040
by: Larry Linson | last post by:
"lyle fairfield" <lylefa1r@yah00.cawrote My Query Builder will produce Queries faster for me than your approach of writing SQL from scratch will produce Queries for me. Obviously, YMDV. When Access first was released, I was "like the lightning bug that backed into the electric fan -- de-lighted, no end" because for US$88.88 I had just "hired an assistant to do the grunt work of writing SQL for me". I can modify the Query if I wish,...
3
5098
by: musicgold | last post by:
Hi, I am new in XML. But I have done coding in VBA, C, and HTML. I am using VBA to extract data from an xml file. I use Xpathbuilder to generate Xpath queries for my work. However, some Xpath queries are causing errors in my program. As I am new in xml and its standards I am not sure what is causing them. Answers to the following questions might help me in understanding these problems better. Can you please help me? Thanks. 1. Which...
0
9643
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10319
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8971
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7496
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6737
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5380
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4046
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2877
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.