Subject Re: [IBO] Classic and IBOBackupService
Author Robert martin
Hi Helen

Sorry I am not understanding. I am aware Classic doesn't support
localhost, thats why I specified cpTCP_Ip. I also thought I had
specified a server thats why I have

Protocol := cpTCP_IP;
ServerName := IBODatabase.Server;


Where IBODatabase.Server is IOTA (the name of my computer). I have
tried changing this to LocalHost but no success :-(

Sorry If I'm being a bit dense here but what parameter should I be
setting to localHost?

TIA

Rob



Helen Borrie wrote:
> At 12:21 PM 2/06/2006, you wrote:
>
>> IBOBackupService := TIBOBackupService.Create(IBODatabase.IB_Session);
>> try
>> with IBOBackupService do begin
>> LoginPrompt := False;
>> Params.Add('user_name=' + UserName);
>> Params.Add('password=' + Password);
>> Verbose := True;
>> Options := [IgnoreLimbo];
>> Protocol := cpTCP_IP;
>> DatabaseName := IBODatabase.Path;
>> ServerName := IBODatabase.Server;
>>
>> The while loop above only goes through once? It works for SS, what am I
>> doing wrong?
>>
>
> Not reading the release notes?
>
> Classic on Windows doesn't take local connections (cpLocal) and
> TCP/IP (cpTCP_IP) doesn't take a serverless connection.
>
> I don't know what server you have set up but it needs to be either
> localhost or the network name of your server.
>
> Also replied to your related question of Fb-support...
>
> Helen
>
>