473,657 Members | 2,282 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

EyeDB Object Database (ODBMS) - Python wrapper

EyeDB is a free ODBMS based on the ODMG 3 specification with
programming interfaces for C++ and Java. It is very powerfull, mature,
safe and stable. In fact, it was developed in 1992 for the Genome View
project althought rewritten in 1994, and has been used in a lot of
bioinformatics projects

http://www.eyedb.org/

Python does not have any programming interface to ODBMS and I believe
that it would be very interesting that the Python community could
access to a great object database like this one.

If somebody is interested could to using SIP as Python wrapper. PyQT4
bindings were made with SIP
http://www.riverbankcomputing.co.uk/sip/

These are the conclusions of several Python wrappers that shows that
SIP generates the fastest wrappers:
http://people.web.psi.ch/geus/talks/...n2004_geus.pdf

* Manual wrapping is still fastest and most versatile
* SIP, Boost and Babel generate native extension modules with low
overhead
* SWIG-generated modules rely on pure Python wrapper module and
introduce a large overhead
* Wrapper tool highlights:
- SIP generates the fastest wrappers
- SWIG is mature and well documented
- Boost.Python most elegant integration of C++ and Python
- Babel supports languages as both target and source

If you want to know more about ODBMS here you have some interesting
links:

http://en.wikipedia.org/wiki/Object_database
http://www.dacs.dtic.mil/techs/oodbms2/oodbms-toc.shtml
http://www.kuro5hin.org/?op=displays.../3/32853/11281
http://www.odbms.org/introduction_whenODBMS.html
http://archive.devx.com/dbzone/artic...1/sf0801-1.asp

Sep 9 '06 #1
2 3090
I received the following answer of Eric Viara, EyeDB.org:

"We planned to introduce soon a plugin mechanism to facilitate the way
to write language bindings such as PHP5, Python, PERL and so on. But we
do not know yet if the Python binding will be written by the core
staff.

We do not plan to support XML in the few months. But as eyedb is an
open source project, we expect that somebody else will write supports
for XML."
In any case I advised to him that the creation of a Google group would
be positive to obtain a community interested in that project.

Sep 17 '06 #2
GinTon wrote:
EyeDB is a free ODBMS based on the ODMG 3 specification with
programming interfaces for C++ and Java. It is very powerfull, mature,
safe and stable. In fact, it was developed in 1992 for the Genome View
project althought rewritten in 1994, and has been used in a lot of
bioinformatics projects

http://www.eyedb.org/
I've added this very interesting database to the selection case:

http://case.lazaridis.com/wiki/Persist
Python does not have any programming interface to ODBMS and I believe
that it would be very interesting that the Python community could
access to a great object database like this one.

If somebody is interested could to using SIP as Python wrapper. PyQT4
bindings were made with SIP
http://www.riverbankcomputing.co.uk/sip/

These are the conclusions of several Python wrappers that shows that
SIP generates the fastest wrappers:
http://people.web.psi.ch/geus/talks/...n2004_geus.pdf

* Manual wrapping is still fastest and most versatile
* SIP, Boost and Babel generate native extension modules with low
overhead
* SWIG-generated modules rely on pure Python wrapper module and
introduce a large overhead
* Wrapper tool highlights:
- SIP generates the fastest wrappers
- SWIG is mature and well documented
- Boost.Python most elegant integration of C++ and Python
- Babel supports languages as both target and source
I will take this information in account when selecting a binding:

http://case.lazaridis.com/wiki/Binding

Possibly more important that speed is the simplicity, e.g. how simple
is it to produce the wrapper and how simple is it to update the
wrapper.
If you want to know more about ODBMS here you have some interesting
links:

http://en.wikipedia.org/wiki/Object_database
http://www.dacs.dtic.mil/techs/oodbms2/oodbms-toc.shtml
http://www.kuro5hin.org/?op=displays.../3/32853/11281
http://www.odbms.org/introduction_whenODBMS.html
http://archive.devx.com/dbzone/artic...1/sf0801-1.asp
Sep 19 '06 #3

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

Similar topics

0
1670
by: Patrick K. O'Brien | last post by:
I'm working on an ODBMS written in Python, for Python, and was wondering if anyone was interested. In particular, I'd like to know what features would be useful, and what types of use cases people would have for a simple, but feature-rich object database. The system that I'm developing is PyPerSyst, which began as a simple persistence mechanism, but is now becoming a complete ODBMS. Some details are available here: ...
0
1920
by: Roy Smith | last post by:
I had a class called rule and a subclass of rule, called bgpRule, in a file called bgp.py. I decided to move the rule class to its own file, called rule.py. The original file did "import rule". I forgot to change bgpRule's __init__() method from calling rule.__init__() to call rule.rule.__init__(). Amazingly, this caused no immediate error, but rule.__init__() never got called. When I found the problem, I was puzzled as to why I...
24
6732
by: Hung Jung Lu | last post by:
Hi, Does anybody know where this term comes from? "First-class object" means "something passable as an argument in a function call", but I fail to see the connection with "object class" or with "first-class airplane ticket". I just find the name a bit strange. Also, if there are first-class objects, what would the second-class objects or economy/tourist class objects be? :)
34
7067
by: yensao | last post by:
Hi, I have a hard time to understand difference and similarities between Relational database model and the Object-Oriented model. Can somebody help me with this? Thank you in advance. Yensao
11
9243
by: DrUg13 | last post by:
In java, this seems so easy. You need a new object Object test = new Object() gives me exactly what I want. could someone please help me understand the different ways to do the same thing in C++. I find my self sometimes, trying Object app = Object(); Object *app = Object(); Object app = new Object();
7
2490
by: simonwittber | last post by:
>>> gen = iterator() >>> gen.next <method-wrapper object at 0x009D1B70> >>> gen.next <method-wrapper object at 0x009D1BB0> >>> gen.next <method-wrapper object at 0x009D1B70> >>> gen.next <method-wrapper object at 0x009D1BB0> >>> gen.next is gen.next
29
5883
by: A.P. Hofstede | last post by:
Could someone tell me where MS-Access (current and 97?) fit(s) on the RDBMS - ORDBMS - ODBMS spectrum? I gather it's relational, but how does it size up against/follow SQL2/3/4 definitions and how does it compare to other database vendors? Any articles that might be of interest? It's for an essay on database models... Thanks in advance, Alex
5
3430
by: bg_ie | last post by:
Hi, I wish to write a Python wrapper for my C# COM object but am unsure where to start. I have a dll and a tlb file, and I can use this object in C via the following code - // ConsolApp.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "windows.h"
2
6871
by: andrew cooke | last post by:
Hi, Within Python (2.5): Help on method-wrapper object: __str__ = class method-wrapper(object) | Methods defined here: | | __call__(...) | x.__call__(...) <==x(...)
0
8407
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
8319
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8837
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...
1
8512
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8612
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5638
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
4171
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...
1
2739
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
2
1969
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.