Which embedded database to use in a Delphi application? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:40:12Zhttp://stackoverflow.com/feeds/question/222699http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application15Which embedded database to use in a Delphi application?Darrel2008-10-21T17:16:18Z2009-05-04T00:00:18Z
<p>I am creating a desktop app in Delphi and plan to use an embedded database. I've started the project using SQlite3 with the DISQLite3 library. It works but documentation seems a bit light. I recently found Firebird (yes I've been out of Windows for a while) and it seems to have some compelling features and support.</p>
<p>What are some pros and cons of each embedded db? Size is important as well as support and resources. What have you used and why?</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/222725#22272522Answer by gabr for Which embedded database to use in a Delphi application?gabr2008-10-21T17:27:51Z2008-10-21T17:27:51Z<p>I'm using Firebird 2.1 Embedded and I'm quite happy with it.I like the fact that the database size is practically unlimited (tested with > 4 GB databases and it works) and that the database file is compatible with the Firebird Server so I can use standard tools for database management and inspection. Distribution consists of dropping few files in your exe folder.</p>
<p>Simultaneous access from multiple programs is not supported but simultaneous access from multiple threads is (as long as you ensure that only one 'connect' operation is in progress at any given moment).</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/222754#22275410Answer by Lou Franco for Which embedded database to use in a Delphi application?Lou Franco2008-10-21T17:41:03Z2008-10-21T17:41:03Z<p>I have used SQlite3 for a lot of projects (but from C/C++ and Objective-C). It's extremely small -- no dependencies whatsoever -- database is in a single file.</p>
<p>It's the db of choice for Mac developers because it's directly supported by CoreData and on the iPhone -- so there is a big user base (not to mention all of the other users).</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/222763#2227630Answer by j d for Which embedded database to use in a Delphi application?j d2008-10-21T17:44:23Z2008-10-21T17:44:23Z<p>I have used ScimoreDB. It has its quirks as they give it royalty free and it has its quirks in data types and with some installation issues. This was on a C# project. </p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/222774#2227746Answer by Jim McKeeth for Which embedded database to use in a Delphi application?Jim McKeeth2008-10-21T17:45:36Z2008-10-21T17:45:36Z<p>I've used <a href="http://www.elevatesoftware.com/" rel="nofollow">DBISAM</a> on a number of projects. It is completely embedded without even a need for an external DLL. Unlike the others you listed it is commercial. A lot of great features though and very well documented and supported. The have a <a href="http://www.elevatesoftware.com/" rel="nofollow">successor</a> to it that I haven't tried yet though.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/222785#2227856Answer by Myles Wakeham for Which embedded database to use in a Delphi application?Myles Wakeham2008-10-21T17:51:13Z2008-10-21T17:51:13Z<p>Firebird embedded is our #1 choice because with no code changes, a single user Delphi app with embedded database can be migrated to a multi-user server based deployment without sacrificing any of the high end features (such as stored procedures, triggers, views, etc.). And its a TRUE free database and doesn't GPL your code in the process.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/222796#2227962Answer by Javier for Which embedded database to use in a Delphi application?Javier2008-10-21T17:53:52Z2008-10-21T17:53:52Z<p>As for size, nothing beats SQLite.</p>
<p>when you refer about lack of documentation, i guess it's doc for DISQLite3. The <a href="http://www.sqlite.org" rel="nofollow">SQLite docs</a> are quite complete</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/222934#2229342Answer by lgallion for Which embedded database to use in a Delphi application?lgallion2008-10-21T18:28:12Z2008-10-21T18:28:12Z<p>I am partial to Component Ace's Absolute DB. Although a commercial product ($), it is solid, easy to use, small footprint and well documented. If you are looking for a huge multi-user application, this is not the way to go, but if your multi-user needs are light (or non-existent) this is a solid option.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/223067#2230674Answer by Jeremy Mullin for Which embedded database to use in a Delphi application?Jeremy Mullin2008-10-21T19:01:43Z2008-10-21T19:01:43Z<p>I use Sybase's Advantage Database Server, but I'm also the R&D Manager, so this post is biased. :)</p>
<p>We have native Delphi TTable and TQuery components for both WIN32 VCL and VCL.NET. Direct table access in addition to SQL support makes Advantage unique among many of the other Delphi offerings. Advantage supports large tables (only limited by the number of records, 2 billion) and has a free local engine, which is nice for development PCs and for small customer sites that don't require client/server functionality. Switch to client/server with a single connection property, no other changes.</p>
<p>We have a ton of clients so accessing the data outside of Delphi is also very easy (.NET data provider, ODBC, OLE DB, PHP, Perl, JDBC, etc).</p>
<p>Main Product Web Site: <a href="http://www.advantagedatabase.com" rel="nofollow">http://www.advantagedatabase.com</a>
Developer's Web Site: <a href="http://devzone.advantagedatabase.com" rel="nofollow">http://devzone.advantagedatabase.com</a></p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/223442#2234422Answer by Thomas Mueller for Which embedded database to use in a Delphi application?Thomas Mueller2008-10-21T20:44:34Z2008-10-28T21:02:59Z<p>The problem with (embedded) firebird is, that the database cannot reside on a network drive. Also, it is difficult to have a database on a read only drive (CD/DVD).</p>
<p>For some hacks around these limitations see the Delphi Wiki:
<a href="http://delphi.wikia.com/wiki/Firebird_tipps" rel="nofollow">http://delphi.wikia.com/wiki/Firebird_tipps</a></p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/223449#2234498Answer by Nick Bradbury for Which embedded database to use in a Delphi application?Nick Bradbury2008-10-21T20:48:10Z2008-10-21T20:48:10Z<p>I've been using SQLite (via DISQLite3) in FeedDemon for several months, and I highly recommend it - it has been extremely fast and stable. As Javier said, the docs for the library may be thin, but the docs for SQLite itself are very good.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/223758#2237582Answer by Tom for Which embedded database to use in a Delphi application?Tom2008-10-21T22:24:30Z2008-10-21T22:24:30Z<p>I'm using SQL Server Express and the ADO components. Works great. You can run the SQL Server Express install with commandline to hide the complexities from the users. You can also distribute a database that you load by filename. There are millions of SQL server users so solutions to any problems are easily found in the intertubes :-)</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/223769#2237692Answer by Craig for Which embedded database to use in a Delphi application?Craig2008-10-21T22:27:13Z2008-10-21T22:27:13Z<p>Take a look at NexusDB. Have used very successfully in the past.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/223975#2239751Answer by lkessler for Which embedded database to use in a Delphi application?lkessler2008-10-21T23:48:49Z2008-12-03T20:52:15Z<p>I did a websearch to find a fast database package for my Delphi Application. I wanted it to be completely contained in the executable with no external DLLs or libraries required. I originally found Accuracer by AidAim. They had posted <a href="http://www.accuracer.com/articles/single-file-delphi-database_tests100.php" rel="nofollow">how fast their database was and even gave comparisons</a> with other similar packages to “prove” their point.</p>
<p>I wanted to believe their claims but I thought I’d search the web a bit more to find timings of other packages. I was very surprised to find <a href="http://coding.derkeiler.com/Archive/Delphi/borland.public.delphi.thirdpartytools.general/2007-01/msg00231.html" rel="nofollow">a post at the Delphi discussion forums</a> where a person asked what database to use, and there were 14 different suggestions. One of the responders had done his own timing comparisons and had found Accuracer to be quite slow compared to several others, which Accuracer had (conveniently) left out of their own comparison page. </p>
<p>The post, plus additional followup web research by me, led me to lean toward <a href="http://www.yunqa.de/delphi/doku.php/products/sqlite3/index" rel="nofollow">DISQLite3</a>, a product based on <a href="http://www.sqlite.org/" rel="nofollow">the Open Source SQLite program</a>, but with enhancements to work in Delphi very quickly, with very small overhead, and with command-based calls - which I like. It is actively under development and will soon have an official Delphi 2009 version, although apparently the current version will work under D2009.</p>
<p>Addenum: DISQLite3 Version 2.0.0, released Nov 17, supports D2009.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/227997#2279970Answer by amazongb for Which embedded database to use in a Delphi application?amazongb2008-10-23T00:13:50Z2008-10-23T00:13:50Z<p>If embedded is an absolute must, look at DBISAM.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/246189#2461892Answer by Jamo for Which embedded database to use in a Delphi application?Jamo2008-10-29T09:12:21Z2008-10-29T09:12:21Z<p>NexusDB offers the full range from embedded, to full client/server / remote. Also SQL2003 compliant, I believe. I'm using it on a few projects, and am very pleased so far, and the fact that it can work in such a wide range of "scales" is a big plus (not having to learn another DB for scaled-up apps, etc).</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/263994#2639941Answer by Gerard for Which embedded database to use in a Delphi application?Gerard2008-11-05T00:27:42Z2008-11-05T00:27:42Z<p>kbMemTable is a good candidate. Runs in memory, fast, multi-threadding. Used to be free.</p>
<p><a href="http://www.components4developers.com/" rel="nofollow">Components4Developers</a></p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/276609#2766090Answer by stg for Which embedded database to use in a Delphi application?stg2008-11-09T22:46:20Z2008-11-09T22:46:20Z<p>I have used DBISAM and kbMemTable on different occasions.</p>
<p>What I like about DBISAM is that it has great features, and is usually very reliable. I have used it in large databases, full-text search, read-only mode, CGIs and many other situations. </p>
<p>It is fairly large compared to kbMemTable or SQLite based components, though. And you can't have a single file per database (or even table) - depending on the situation, that is a major disadvantage.</p>
<p>kbMemTable is tiny and it's great for small amounts of data. Since it runs in memory, it has to be a small amount of data, of course.</p>
<p>One other option I've taken on a couple of my desktop apps is dumping the data directly from/to my object hierarchy using TWriter/TReader. This is by far that smallest option, and is absurdly fast compared to using a database. The data files are tiny, too.</p>
<p>It has all kinds of drawbacks, though - you have to code versioning in if you might want to ever add/change fields, unless it's in-memory it is even more complicated, no multi-user support at all, etc.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/295155#2951553Answer by Vladimir Radmilovic for Which embedded database to use in a Delphi application?Vladimir Radmilovic2008-11-17T09:14:09Z2008-11-17T09:14:09Z<p>It really depends what you need. For single-user applications, Firebird Embedded or SQLite are probably best choices (and price is right). On the other end, if you need support for large number of multiple users, you should probably use regular Firebird instead of Embedded version (server is simple to install so you won't have much problems here).</p>
<p>And if you need something in between, for a moderate multi-user application, one of flat databases would be better. I found that <a href="http://componentace.com/absolute_database_features.htm" rel="nofollow">ComponentAce's Absolute Database</a> better choice for my needs than DBISAM, NexusDB or VistaDB.</p>
<p>It leaves relatively small footprint (no DLLs), it's a single-file db (a must for me), supports Unicode, BLOB compression, crypting, and technical limits seem impressing for a flat database. Moreover, support was good in few occasions when I needed it.</p>
<p>For cons, I have noticed it doesn't support nested transactions, but other than that, I had no problems.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/338663#3386636Answer by Max Lybbert for Which embedded database to use in a Delphi application?Max Lybbert2008-12-03T21:01:29Z2008-12-04T19:07:14Z<p>Let's see, quick comparison:</p>
<p>SQLite:</p>
<ul>
<li>dynamic typing in the database</li>
<li>cross-platform files</li>
<li>runs on Windows, Linux, Mac, etc.</li>
<li>public domain</li>
<li>supports transactions</li>
<li>relies on file system security, does not include own security</li>
</ul>
<p>Firebird embedded:</p>
<ul>
<li>strong typing in the database
<ul>
<li>not all SQL datatypes are supported</li>
</ul></li>
<li>cross-platform files
<ul>
<li>Firebird embedded only runs on Windows</li>
<li>Files from Firebird embedded are in the same format as the full server version</li>
<li>Files from Firebird embedded can be copied to a non-Windows server for use</li>
</ul></li>
<li>available under a modified MPL ("what's ours is ours and must remain free, what's yours is yours and you don't have to release it")</li>
<li>supports transactions, triggers, etc.</li>
</ul>
<p>MySQL embedded:</p>
<ul>
<li>support for SQL features depends on file format</li>
<li>(IIRC) cross-platform files</li>
<li>GPL unless you pay royalties</li>
<li>runs on Windows, Linux, Mac</li>
<li>incredibly popular with the open source crowd</li>
</ul>
<p>Even embedded databases have their strengths and weaknesses. You'll need to weigh those strengths and weaknesses against what you're doing to decide.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/401501#4015010Answer by Matthias Hryniszak for Which embedded database to use in a Delphi application?Matthias Hryniszak2008-12-30T21:02:54Z2008-12-30T21:02:54Z<p>Firebird embedded is our #1 choice as well. And the suite <em>Unified Interbase v2.0</em> with it. A great and stable solution!</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/549014#5490140Answer by Mitch for Which embedded database to use in a Delphi application?Mitch2009-02-14T12:04:28Z2009-02-14T12:04:28Z<p>Firebird all the way. Does pretty well everything and so far version 2.1 is very solid.</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/750428#7504280Answer by Eric Grange for Which embedded database to use in a Delphi application?Eric Grange2009-04-15T05:29:53Z2009-04-15T05:29:53Z<p>FireBird offers the opportunity to scale up to multi-users sometime down the line, or if you need concurrency (if your application goes multi-threaded).</p>
<p>SQLite is quite unrivaled if you only need single-user access, no other database comes close to it on any aspect, be it performance, convenience, SQL support or stability. </p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/750833#7508330Answer by philippe Watel for Which embedded database to use in a Delphi application?philippe Watel2009-04-15T08:49:52Z2009-04-15T08:49:52Z<p>Firebird is really awsome and has a small footprint so you can use embedded
and it can be scaled upward for many users
and does unicode faily well
I use devart components with delphi 2009
and FIB plus for delphi 6/7 (their version for 2009 and unicode is not ready yet too bad)</p>
http://stackoverflow.com/questions/222699/which-embedded-database-to-use-in-a-delphi-application/818377#8183770Answer by Alister for Which embedded database to use in a Delphi application?Alister2009-05-04T00:00:18Z2009-05-04T00:00:18Z<p>Hmmm, no one has recommended the BDE - I wonder why that is ;-)</p>
<p>BlackFishSQL is another possibility, although I haven't tested in depth as yet.</p>