BDE to Unidac Migration
BDE to Unidac Migration
Hi All,
Can you please let me know how can I migrate the Tsession component of BDE to unidac. Is there any equivalent component in unidac.
Thanks
Regards
AS
Can you please let me know how can I migrate the Tsession component of BDE to unidac. Is there any equivalent component in unidac.
Thanks
Regards
AS
-
AndreyZ
-
AndreyZ
Hello,
UniDAC works directly with a database server. You can use unlimited number of components to get access to a database through one UniConnection component. Also UniConnection supports pooling. It means that UniDAC will get a connection from a pool instead of creating a new connection to a server on every disconnect/connect operations. For more information about pooling, please read the UniDAC documentation.
Please describe in details the functionality you need (integration of several connections).
UniDAC works directly with a database server. You can use unlimited number of components to get access to a database through one UniConnection component. Also UniConnection supports pooling. It means that UniDAC will get a connection from a pool instead of creating a new connection to a server on every disconnect/connect operations. For more information about pooling, please read the UniDAC documentation.
Please describe in details the functionality you need (integration of several connections).
-
AndreyZ
The UniDAC documentation is supplied with UniDAC. You can find it in the %UniDAC_Install_Directory%\Doc directory. You can access the UniDAC documentation via the Delphi main menu (UniDAC->UniDAC help). Also you can download the UniDAC documentation in the CHM format here: http://www.devart.com/unidac/unidacchm.zip
Hello,
You can download the trial edition of UniDAC with extended trial period from http://www.devart.com/pub/unidac14.zip
You can download the trial edition of UniDAC with extended trial period from http://www.devart.com/pub/unidac14.zip
Hi Team,
Could you please let us know whether Unidac supports DBF Files
In BDE, we are using Ttable component and loading the contents of DBF Files into the database
Can we achieve the same using Tunitable component...
Which component can be used in Unidac to Load a text file with values into a table in Sybase
Thanks for your help
Regards,
AS
Could you please let us know whether Unidac supports DBF Files
In BDE, we are using Ttable component and loading the contents of DBF Files into the database
Can we achieve the same using Tunitable component...
Which component can be used in Unidac to Load a text file with values into a table in Sybase
Thanks for your help
Regards,
AS
Hello,
You can work with DBF files in UniDAC via ODBCUniProvider or DBFUniProvider.
To load data from DBF to Sybase, you can use TUniLoader.
Below is a small sample demonstrating it:
You can work with DBF files in UniDAC via ODBCUniProvider or DBFUniProvider.
To load data from DBF to Sybase, you can use TUniLoader.
Below is a small sample demonstrating it:
Code: Select all
var
DBFConnection, ASEConnection: TUniConnection;
DBFTable: TUniTable;
UniLoader: TUniLoader;
begin
ASEConnection:= TUniConnection.Create(nil);
ASEConnection.ProviderName := 'ASE';
ASEConnection.Server := 'ASE_Server';
ASEConnection.Username := 'user_name';
ASEConnection.Password := 'password';
ASEConnection.Database := 'dabase';
ASEConnection.Port := 5000;
ASEConnection.Connected;
DBFConnection:= TUniConnection.Create(nil);
DBFConnection.ProviderName := 'DBF';
DBFConnection.Database:= 'Path to *.dbf files';
DBFConnection.Connect;
DBFTable:= TUniTable.Create(nil);
DBFTable.Connection := DBFConnection;
DBFTable.TableName := 'Src_DBF_Table';
DBFTable.Open;
UniLoader:= TUniLoader.Create(nil);
UniLoader.Connection := ASEConnection;
UniLoader.TableName:= 'Dst_ASE_Table';
UniLoader.LoadFromDataSet(DBFTable);