Search found 5 matches

by marcosdoni
Mon 15 Aug 2016 16:06
Forum: EntityDAC
Topic: EntityDeveloper - IBDAC Provider
Replies: 2
Views: 2769

Re: EntityDeveloper - IBDAC Provider

Installing FirebirdSql.Data.FirebirdClient solved the issue.
by marcosdoni
Mon 15 Aug 2016 15:32
Forum: EntityDAC
Topic: Firebird Error - "Connection rejected by remote interface"
Replies: 4
Views: 28795

Re: Firebird Error - "Connection rejected by remote interface"

Removing default InterBase installed with delphi solved the issue.

Thanks.
by marcosdoni
Mon 15 Aug 2016 15:06
Forum: EntityDAC
Topic: EntityDeveloper - IBDAC Provider
Replies: 2
Views: 2769

EntityDeveloper - IBDAC Provider

When I try to create a model in EntityDeveloper , there is no the Provider for IBDAC for selection.
by marcosdoni
Mon 15 Aug 2016 15:01
Forum: EntityDAC
Topic: Firebird Error - "Connection rejected by remote interface"
Replies: 4
Views: 28795

Firebird Error - "Connection rejected by remote interface"

I'm testing Entitydac. My environment is Windows 10 x64 , Rad Studio XE7 and Firebird 3.0 x64.

When performing a small test connection to firebird database , I get the error: "connection rejected by remote interface"

Sample test:

Code: Select all

var
  Connection: TEntityConnection;
begin
  Connection := TEntityConnection.Create(nil);
  Connection.ProviderName := 'Ibdac';
  Connection.ConnectionString := 'Server=localhost; Username=SYSDBA; password=MASTERKEY; DataBase=C:\bd-test.gdb';
  Connection.Connect;
It seems that this error is related to library " fbclient.dll". So , I wonder how to get around this error.
by marcosdoni
Thu 20 Jun 2013 19:51
Forum: InterBase Data Access Components
Topic: IBDAC using dbedits as master and dbgrid as detail with generators
Replies: 1
Views: 1292

IBDAC using dbedits as master and dbgrid as detail with generators

As an example:

I have firebird tables:


TB_CUSTOMER

IDCUSTOMER (autoincrement generator)
CUSTOMERNAME

TB_PHONE

IDPHONE
IDCUSTOMER (foreing key from TB_CUSTOMER)
PHONE

TB_PHONE is handled using a dbgrid. But, I can not assign IDCUSTOMER field value in TB_PHONE because it has not yet been generated in firebird generator.


Any sugest?