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

Thanks!

Leo

link|improve this question

feedback

13 Answers

up vote 15 down vote accepted

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|improve this answer
1  
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 '09 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 '09 at 14:53
1  
I had completely forgotten the SQlite could use memory as a store. There goes MY afternoon!!! – Brad Bruce Jun 28 '09 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 '09 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 '09 at 19:47
show 2 more comments
feedback

Sqlite

Firebird Embedded (version 1.5 and later)

link|improve this answer
feedback

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|improve this answer
I heard good things about NexusDB. About kbmmemtable too, but nexusdb seems more focused on performance. – Marco van de Voort Jun 29 '09 at 10:39
feedback

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

link|improve this answer
feedback

AidAim has one SQLMemTable

link|improve this answer
feedback

ComponentAce offers AbsoluteDatabase with in memory option AbsoluteDatabase

link|improve this answer
feedback

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

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

link|improve this answer
feedback

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

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

link|improve this answer
feedback

RxLib, an open-source component lib has rxMemTable.

link|improve this answer
feedback

CSQL in memory database management system

http://www.csqldb.com

link|improve this answer
feedback

Maybe this helps TimesTen and solidDB comparison

link|improve this answer
feedback

VelocityDB behaves like an in memory database when memory is available and can be embedded by deploying with a single DLL. It is also performes better and requires no SQL coding or mapping layer.

link|improve this answer
feedback

To complete the picture, Elevate Software have DBISAM and ElevateDB which are both reliable and have worked for me very well in heavily multi-threaded applications.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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