Hola amig@s,
Tengo un formulario en Forms10g, para la lecturas de ficheros en
el cliente, y me sa el siguiente error FRM-92101: There was a failure
in the formsserver during startup, el localizado un poco mas el
problema, y es cuando realizo el CLIENT_TEXT_IO.FCLOSE;
La rutina es algo parecida a esta:
declare
Fichero CLIENT_TEXT_IO.FILE_TYPE;
cLinea varchar2( 2000 );
begin
Fichero := CLIENT_TEXT_IO.fopen( pFichero, 'R' );
if CLIENT_TEXT_IO.is_open( Fichero ) then
loop -- Lectura Fichero
CLIENT_TEXT_IO.get_line( Fichero, cLinea );
/*... Procesando Informacion */
end loop;
exception
when NO_DATA_FOUND then
CLIENT_TEXT_IO.fclose( Fichero ); /* <<--Aqui se produce el error, no
se por donde continuar */
when others then
message( SQLERRM, no_acknowledge );
SYNCHRONIZE;
end if;
end;
Un abrazo y gracias
Antonio Ternero Pacheco