Как выбрать тип хранения WWV_FLOW_FILES в Oracle APEX? - PullRequest
0 голосов
/ 02 января 2019

Я создал страницу и хочу импортировать файл Excel в Oracle APEX, но когда я выбираю Тип хранилища для сохранения временных данных, я не вижу таблицу WWV_FLOW_FILES , так как я могу ее найти???

enter image description here

1 Ответ

0 голосов
/ 02 января 2019

Вы не говорите, что хотите сделать с электронной таблицей - загрузите данные в базу данных или обработайте файл после его загрузки.Также всегда указывайте версию программного обеспечения.

Вы видели это: http://dba -oracle.com / t_easy_html_db_storing_files_in_html_db.htm и https://www.foxinfotech.in/2013/05/importing-files-in-oracle-apex-using-wwv_flow_files.html

Вы читали документы ?

> There are two different types of storage types available within the
> File Browse item type:
> 
>     BLOB column specific in Item Source Attribute - Completely declarative approach that supports configuration of the additional
> settings discussed here. This references a BLOB in your own database
> table.
> 
>     Table WWV_FLOW_FILES - Available for backwards compatibility. Oracle does not recommend using this in new applications.

Table APEX_APPLICATION_TEMP_FILES - Store the uploaded file in a temporary location that you can access with the view APEX_APPLICATION_TEMP_FILES. Oracle Application Express automatically deletes the file at the end of the session or at the end of the upload request, depending on what you choose for Purge File At.

Примечание: Намерение состоит в том, чтобы загрузить файл и обработать его с помощью PL / SQL после его загрузки.Получите доступ к нему из представления: APEX_APPLICATION_TEMP_FILES

Или других учебных пособий в Интернете, таких как: https://jeffkemponoracle.com/2016/08/file-upload-improvements-in-apex-5-1/ в основном загрузка файла осуществляется во временную таблицу для дальнейшей обработки после загрузки.Другие ссылки: Как импортировать данные из таблицы Excel в ORACLE APEX? , https://community.oracle.com/thread/1022147

...