If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > General > Database Concepts & Design > Berkeley DB

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-17-06, 02:48
certus certus is offline
Registered User
 
Join Date: Dec 2003
Location: Canada
Posts: 710
Berkeley DB

Anyone familiar with this XML DB?

http://www.sleepycat.com/
__________________
visit: relationary
Reply With Quote
  #2 (permalink)  
Old 09-18-06, 17:41
loquin loquin is offline
Super Moderator
 
Join Date: Jun 2004
Location: Arizona, USA
Posts: 1,797
I believe it's a low-level "toolbox" to allow xml-based "database" storage on a local computer. It does include a command line shell that's useful for exploring the capabilities.

To do anything useful, you need to write a front end, using the low-level API's that sleepycat provides.

Note that this database is primarily designed for single-computer use. If you want to extend it for multiple, concurrent users, you would want to write a service (probably using TCP/IP) to act as a middle layer between the data files and your clients, otherwise, you would run into the same file system based concurrency issues of which MS Access suffers.

As does the non-xml version of sleepcat, it creates a separate folder and multiple files within the folder on the target computer for each "table" it creates. Since it uses a native XML format for storing the data, it is perhaps more suitable for semi-structured data than is the "standard" version of sleepycat.

all the API's are called in-process, so that it can be more responsive than accessing a client-server based database, which depends on inter-process communication between the client and the server.
__________________
Lou
使大吃一惊
"Lisa, in this house, we obey the laws of thermodynamics!" - Homer Simpson
"I have my standards. They may be low, but I have them!" - Bette Middler
"It's a book about a Spanish guy named Manual. You should read it." - Dilbert


Last edited by loquin; 09-19-06 at 13:15.
Reply With Quote
  #3 (permalink)  
Old 09-21-06, 18:15
certus certus is offline
Registered User
 
Join Date: Dec 2003
Location: Canada
Posts: 710
Thanks loquin.
__________________
visit: relationary
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On