Firebird Access WIth Delphi .net
Firebird Access WIth Delphi .net
Hello All,
I have create a Firebird database for use with Delphi Win32 applications. Now the customer wants to make parts of the database accessible to .net clients. What Core Lab tools do I need for this using Delphi .net? Are there any demos/examples of similar projects?
regards and thanks
SeaCay
I have create a Firebird database for use with Delphi Win32 applications. Now the customer wants to make parts of the database accessible to .net clients. What Core Lab tools do I need for this using Delphi .net? Are there any demos/examples of similar projects?
regards and thanks
SeaCay
Hi,
Just to let you know, the project \Demos\dotNet\Miscellaneous\AspNet\Web.bdsproj fails to compile in Delphi .net 2007. The problem seems to stem from the line
where TConnLostCause is undefined. The compiler returns:
[DCC Error] WebForm.pas(123): E2003 Undeclared identifier: 'TConnLostCause'
TConnLostCause seems to be referenced in many hpp files but I don't know which assembly it is defined in.
regards
Just to let you know, the project \Demos\dotNet\Miscellaneous\AspNet\Web.bdsproj fails to compile in Delphi .net 2007. The problem seems to stem from the line
Code: Select all
procedure IBCConnectionConnectionLost(Sender: TObject; Component: TComponent;
ConnLostCause: TConnLostCause; var RetryMode: TRetryMode);
[DCC Error] WebForm.pas(123): E2003 Undeclared identifier: 'TConnLostCause'
TConnLostCause seems to be referenced in many hpp files but I don't know which assembly it is defined in.
regards
TConnLostCause is defined in MemData.
Adding this module fixes the problem.
Also
In the Project source Web.dpr (dproj) change the line
to read
(drop the 1 in WebForm1)
The project will now compile.
regards
SeaCay
Adding this module fixes the problem.
Also
In the Project source Web.dpr (dproj) change the line
Code: Select all
WebForm1 in 'WebForm.pas' {WebForm.TWebForm: System.Web.UI.Page};
Code: Select all
WebForm in 'WebForm.pas' {WebForm.TWebForm: System.Web.UI.Page};
The project will now compile.
regards
SeaCay