Using IBDAC with DataSnap?
Using IBDAC with DataSnap?
I've "Google" how to connect "TDSProviderConnection"
the "SQLConnection" property a "TIBCConnection"
Most have not found a way to do this
've looked at this link:
http://docwiki.embarcadero.com/RADStudi ... plications
I did not think anything more about it.
And I do not use the "TSQLConnection" with the drivers you
I want to use direct route "TIBCConnection" and "TIBCQuery"
I would like if you could please send me examples of two basic connection
Server and Client with IBDAC.
Grateful.
the "SQLConnection" property a "TIBCConnection"
Most have not found a way to do this
've looked at this link:
http://docwiki.embarcadero.com/RADStudi ... plications
I did not think anything more about it.
And I do not use the "TSQLConnection" with the drivers you
I want to use direct route "TIBCConnection" and "TIBCQuery"
I would like if you could please send me examples of two basic connection
Server and Client with IBDAC.
Grateful.
Re: Using IBDAC with DataSnap?
I recommend you to use the following article:
http://blog.devart.com/using-dac-produc ... pment.html
in which use of UniDAC with DataSnap is revealed in details.
To use IBDAC with DataSnap, replace the TUniConnection and TPostgreSQLUniProvider components with TIBCConnection, also replace TUniQuery and TUniStoredProc with TIBCQuery and TIBCStoredProc respectively.
http://blog.devart.com/using-dac-produc ... pment.html
in which use of UniDAC with DataSnap is revealed in details.
To use IBDAC with DataSnap, replace the TUniConnection and TPostgreSQLUniProvider components with TIBCConnection, also replace TUniQuery and TUniStoredProc with TIBCQuery and TIBCStoredProc respectively.
Re: Using IBDAC with DataSnap?
As I mentioned this file uses
"TSQLConnection" I want to use "TIBCConnection" and "TIBCQuery"
I had already read that article and not helpful
Would you like a little project
with the Client and the Server
Thank you for listening.
"TSQLConnection" I want to use "TIBCConnection" and "TIBCQuery"
I had already read that article and not helpful
Would you like a little project
with the Client and the Server
Thank you for listening.
Re: Using IBDAC with DataSnap?
The DataSnap technology involves three–tier architecture. To connect the DataSnap client with the DataSnap server, a native protocol is used, which is implemented by the TSQLConnection driver only. Therefore you cannot use our components for this purpose.
For connection with the database, the TUniConnection/TIBCConnection component is used, that is described in the blog.
For connection with the database, the TUniConnection/TIBCConnection component is used, that is described in the blog.
Re: Using IBDAC with DataSnap?
Yes I understand you could post two more example of a server and a client and post on blog for better learning.
Grateful.
Grateful.
Re: Using IBDAC with DataSnap?
Please clarify what is unclear for you in the article and what difficulties you are encountering when migrating from UniDAC to IBDAC.
Re: Using IBDAC with DataSnap?
I do not want to use "TSQLConnection driver"
I want to use "TIBCConnection"
and do not know how to do it by Article
Would you rode two projects one Server and a Client and actually stand in that article so would help both me and other people.
Grateful.
I want to use "TIBCConnection"
and do not know how to do it by Article
Would you rode two projects one Server and a Client and actually stand in that article so would help both me and other people.
Grateful.
Re: Using IBDAC with DataSnap?
TSQLConnection implements a native DataSnap protocol to connect to the DataSnap server. And you cannot use TIBCConnection for this purpose in any way.