Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebird or NexusDB

I know that there are many Delphi database related questions available, but I'm considering only these two databases. I will need to query around 100.000 records.

From your experience which one is faster:

  • as embedded
  • as C/S

Thanks.

like image 769
Mihaela Avatar asked Dec 30 '22 11:12

Mihaela


2 Answers

I Haven't used Nexus tbh, but I use Firebird regulary (Client/Server) and I am absolutely loving it. It's small, fast, tries-to-be SQL92 compliant, and the management tools are f-a-n-t-a-s-t-i-c (see IBExpert, they have free edition aswell)

The embedded version should be as good as the normal one.

like image 88
zz1433 Avatar answered Jan 13 '23 14:01

zz1433


For embedded DB SQLite would be my choice. It's fast, almost SQL-92 compatible, cross platform and free.

like image 45
Linas Avatar answered Jan 13 '23 12:01

Linas