vote up 3 vote down star
1

Hi all,

I need an embedded/In Memory Database which support multithread access.

Thanks!

Leo

flag

10 Answers

vote up 13 vote down check

You can use SQlite3 with the DISQLite3 library.

Or Firebird Embedded

For proof that they are thread-safe check the links provided by Mohammed Nasman

link|flag
Hey, You are faster in few seconds ;-), but Firebird 1.5 is thread-safe too, refer to to the link I posted to see that. – Mohammed Nasman Jun 28 at 14:51
I know that it is. That's why I proposed these two. Didn't say it wasn't threadsave. But thanks anyway for the links – jitter Jun 28 at 14:53
1  
I had completely forgotten the SQlite could use memory as a store. There goes MY afternoon!!! – Brad Bruce Jun 28 at 15:11
1  
Just a small warning ... FB Embedded works great as a threasafe internal database - except when you're connecting to the database. We were getting infrequent crashes in GDS32.DLL during the connect until we put a lock around the connection code. – gabr Jun 29 at 7:00
if you use gds32.dll with Firebird : you probably don't use the right component to connect because Firebird client dll is fbclient.dll – Hugues Van Landeghem Jun 29 at 19:47
show 1 more comment
vote up 7 vote down

Sqlite

Firebird Embedded (version 1.5 and later)

link|flag
vote up 2 vote down

AidAim has one SQLMemTable

link|flag
vote up 3 vote down

Components4Developers has one that's been around a long time kbmMemTable

link|flag
vote up 1 vote down

ComponentAce offers AbsoluteDatabase with in memory option AbsoluteDatabase

link|flag
vote up 1 vote down

SolidDB from IBM if dont mind if its closed source/commercial:

http://www-01.ibm.com/software/data/soliddb/

link|flag
vote up 0 vote down

RxLib, an open-source component lib has rxMemTable.

link|flag
vote up 3 vote down

NexusDB can be both embedded and use memory tables. For a multithreaded application you just give each thread it's own Session and Database components.

There is a free embedded version with no souce code or you can purchase the full client server version with source code.

link|flag
I heard good things about NexusDB. About kbmmemtable too, but nexusdb seems more focused on performance. – Marco van de Voort Jun 29 at 10:39
vote up 1 vote down

eXtremeDB, from my company (McObject), is increasingly popular.The standard edition is an embedded in-memory database.

http://www.mcobject.com/extremedbfamily.shtml

link|flag
vote up 0 vote down

CSQL in memory database management system

http://www.csqldb.com

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.