Ver Mensaje Individual
  #7  
Antiguo 11-12-2008
[FGarcia] FGarcia is offline
Miembro Premium
 
Registrado: sep 2005
Ubicación: Cordoba, Veracruz, México
Posts: 1.123
Reputación: 20
FGarcia Va por buen camino
Ya en forma la ejecucion del respaldo:

Código Delphi [-]
with IBBkpService do
   begin
    DatabaseName := NombreDB;
    BackUpFile.add(CrearNombreDiario(NombreDB));
    Protocol := Local;
    Params.Add('UserName=' + 'sysdba');
    Params.Add('Password=' + 'masterkey');
    Active := True;
    //Memo1.Lines.Add('********** INICIANDO RESPALDO **********');
      while not eof do
        begin
         //Memo1.Lines.Add(GetNextLine);
          GetNextLine;
        end;
      Active:= False;
      //Memo1.Lines.Add('********** RESPALDO FINALIZADO ********');
    end;

sin embargo me abre la ventana de login y despues de ingresar los datos me da este Horror:

Cita:
---------------------------
Debugger Exception Notification
---------------------------
Project CapDatos.exe raised exception class EIBClientError with message 'SPB Constant Unknown'. Process stopped. Use Step or Run to continue.
---------------------------
OK Help
---------------------------
NPI de ese SPB Constant!
__________________
ESTO ES UN FORO ... NO UN MÓVIL
¿Por qué no escribir de una manera comprensible para que los humanos lo podamos entender?
Responder Con Cita