TIBCBackupService : how to use it
TIBCBackupService : how to use it
Hi
I have some pb to implemente this componant whereas it seems not very complicated...
I success to active the componant after connection to my database, but it didn't find the result of the backup ????
I didn't find an example of this componant of your demo,
is it possible to add it for a next demo ?
regards
olivier
I have some pb to implemente this componant whereas it seems not very complicated...
I success to active the componant after connection to my database, but it didn't find the result of the backup ????
I didn't find an example of this componant of your demo,
is it possible to add it for a next demo ?
regards
olivier
how do you specify the backup file size? With IBX, this would be possible by adding "=" behind the filename.Plash wrote:Call the Attach method to connect to the server. Then call the ServiceStart method to create backup. The backup is created in a file specified in the BackupFile property (on the server side).
Does IBDac support this, if so, how?
When I try to do that, I get a "clumplet too long" error.
Any news on this?upscene wrote:how do you specify the backup file size? With IBX, this would be possible by adding "=" behind the filename.Plash wrote:Call the Attach method to connect to the server. Then call the ServiceStart method to create backup. The backup is created in a file specified in the BackupFile property (on the server side).
Does IBDac support this, if so, how?
When I try to do that, I get a "clumplet too long" error.
hi
I tried but
I wrte this code on "beforedatabaseconnection"
may i something wrong ?
regards
I tried but

I wrte this code on "beforedatabaseconnection"
Code: Select all
GestBag_Backup.ClientLibrary := BaseBagueursFB.ClientLibrary;
GestBag_Backup.Database := BaseBagueursFB.Database;
GestBag_Backup.Server := BaseBagueursFB.Server;
GestBag_Backup.Username := BaseBagueursFB.Username;
GestBag_Backup.Password := BaseBagueursFB.Password;
GestBag_Backup.BackupFile.Clear;
GestBag_Backup.BackupFile.Text := 'C:\Users\EG\Documents\_test.fbk';
GestBag_Backup.Attach;
//GestBag_Backup.Active := True;
GestBag_Backup.ServiceStart;
regards
Try to use the following code:
Code: Select all
GestBag_Backup.Attach;
GestBag_Backup.ServiceStart;
while GestBag_Backup.IsServiceRunning do
begin
Application.ProcessMessages;
end;
GestBag_Backup.Detach;
It seems that this problem is connected with the specificity of Firebird server work and not with IBDAC.
Please try to use standard Delphi InterBase Service components and check if the problem still exists. IBDAC IBC Service components have interface that is compatible with standard Delphi InterBase Service components.
Please try to use standard Delphi InterBase Service components and check if the problem still exists. IBDAC IBC Service components have interface that is compatible with standard Delphi InterBase Service components.
-
- Posts: 52
- Joined: Thu 17 Dec 2009 08:25
Hi
Dimon
i tried to use the IBBackupService but i receive during the execution this message :
Thomas :
Yes this is a valid directory, but anyway i'll test with a public directory (just in case)
reagrds
olivier
Dimon
i tried to use the IBBackupService but i receive during the execution this message :
I prefere not install interbase, maybe conflict could be occur with firebird !!Interbase library gds32.dll not found in the directory, please install interbase to use this functionnality
Thomas :
Yes this is a valid directory, but anyway i'll test with a public directory (just in case)

reagrds
olivier