Questions tagged [firebird-embedded]

Variant of the Firebird database client library that also includes the database server, packed into a single dll or so file. Use this tags for questions about Firebird embedded. It is advisable to also tag with Firebird

Special variant of the Firebird client library that also includes the server. Each Firebird server release also has a release package for Firebird embedded, see the downloads page of a Firebird release.

The major difference between the Server and Embedded versions is the lack of authentication/protection on the database.

The features of embedded are useful for developers wanting to create easy to distribute single-user applications that do not need security.

See also

93 questions
-1
votes
1 answer

FireDac connection string to FireBird 2.5 embedded

I tried this but it seems it does not work: procedure TDataModule3.DataModuleCreate(Sender: TObject); begin FDConnection1.Params.Values['Database'] := ExtractFilePath(ParamStr(0)) + 'MYDB.fdb'…
user3927897
  • 611
  • 3
  • 10
  • 20
-2
votes
4 answers

Firebird Embedded & Delphi "unavailable database"

I'm using Firebird 2.5 (Embedded) And Delphi XE2. I kept below files to my aplication root dir : C:\myapp\app.exe C:\myapp\fbclient.dll C:\myapp\icudt30.dll C:\myapp\icuin30.dll C:\myapp\icuuc30.dll C:\myapp\dbxfb.dll And My Connection Settings…
Hamed Kamrava
  • 12,359
  • 34
  • 87
  • 125
-3
votes
1 answer

How to set up Firebird embedded with C++?

I'm trying to set up a Firebird embedded server for a simple C++ application that I'm making. It'll use one .fdb file that's intended to be only used by the application, but I want to be able to move the application and the database file around…
1 2 3 4 5 6
7