Explorador de ficheros

¿Hay alguna herramienta de árbol que te permita seleccionar una carpeta de tu explorador de windows?

1 respuesta

Respuesta
1
Veo que estas haciendo dos preguntas en una
si se cobrara por este servicio, te estarías ahorrando dinero
si lo que entiendo de tu pregunta es como guardar las imágenes en la base de datos
utiliza el help de forms y encontraras un ejemplo completo como este que te envío que lo tome de ahí
No olvides cerrar la pregunta y valorar la respuesta .. si lo hubieras hecho con la anterior yo habría acumulado puntos... jajaja.. no importa
Espero que te sirva lo que te envío
/* Read an image from the filesystem into an image item on the
** form. In this example, the scanned picture identification
** for each employee is NOT saved to the database, but is
** stored on the filesystem. An employee's photo is a TIFF
** image stored in a file named <Userid>.TIF Each employee's
** Userid is unique.
** Trigger: Post-Query
*/
DECLARE
tiff_image_dir VARCHAR2(80) := '/usr/staff/photos/';
photo_filename VARCHAR2(80);
BEGIN
/*
** Set the message level high so we can gracefully handle
** an error reading the file if it occurs
*/
:System.Message_Level := '25';
/*
** After fetching an employee record, take the employee's
** Userid and concatenate the '.TIF' extension to derive
** the filename from which to load the TIFF image. The EMP
** record has a non-database image item named 'EMP_PHOTO'
** into which we read the image.
*/
photo_filename := tiff_image_dir||LOWER(:emp.userid)||'.tif';
/*
** For example 'photo_filename' might look like:
**
** /usr/staff/photos/jgetty.tif
** ------
**
** Now, read in the appropriate image.
*/
READ_IMAGE_FILE(photo_filename, 'TIFF', 'emp.emp_photo');
IF NOT FORM_SUCCESS THEN
MESSAGE('This employee does not have a photo on file.');
END IF;
:SYSTEM.MESSAGE_LEVEL := '0';
END;
Si estyas trabajando con FORMS
Puedes utilizar la instrucción
Declare
filename VARCHAR2(256) ;
begin
filename := GET_FILE_NAME (File_Filter=> '*.*|*.*|');
El nombre del archivo te queda guardado en la variable filename
Espero que te sirva esta respuesta
No olvides cerrar y valorar la pregunta
Que estés bien

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas