oracleforms

problem in finding list of files in directory

旧城冷巷雨未停 提交于 2019-11-30 22:03:14
I want to retrieve list of all file in a specific folder that included oracle form and menu and report and some txt file... Do you have any idea how I can retrieve these data in ORACLE form, and insert them into my data block, automatically? I use oracle form 6.0. I did something along these lines: Create an Oracle directory for the directory you want to list: create or replace directory YOURDIR as '\path\to\your\directory'; Build a temporary table: create global temporary table DIR_LIST ( FILENAME VARCHAR2(255), ) on commit preserve rows; grant select, insert, update, delete on DIR_LIST to

problem in finding list of files in directory

a 夏天 提交于 2019-11-30 17:14:18
问题 I want to retrieve list of all file in a specific folder that included oracle form and menu and report and some txt file... Do you have any idea how I can retrieve these data in ORACLE form, and insert them into my data block, automatically? I use oracle form 6.0. 回答1: I did something along these lines: Create an Oracle directory for the directory you want to list: create or replace directory YOURDIR as '\path\to\your\directory'; Build a temporary table: create global temporary table DIR_LIST

how send email by Pl/sql

痞子三分冷 提交于 2019-11-29 15:47:31
I want send email by using *oracle 9i - Enterprise edition release 9.2.0.8.0 , *I know there is one package for oracle 10,but would you advice me about it for oracle 9i? Is there any package ? Can I sent email by Oracle 9i? Is there any way using an interface program such as a java program and send email via that one, if it is impossible to send mail by Oracle 9i... I mean I just send parameter to that program and send email by using that program. I can run write batch file,can we run Outlook and send email via that one by Oracle 9i? P.s. my database is base on 9i and my form builder is

Importing .csv file into a Oracle Forms application

南笙酒味 提交于 2019-11-28 13:03:09
I've got a question how to import a .csv file into a Oracle Forms application. We are using Oracle Forms 11g on a Oracle 12c Database. Now we want to import a .csv file with the Forms applicationso our customers can import this file and write the data into the database. My plan is to create an application where the user can import a .csv file with a filechooser. The data from the .csv will be read and an output shows the user the data in this application. Then the user should be able to save it into the database through a button. I've tried several searches but haven't found the right solution

how send email by Pl/sql

懵懂的女人 提交于 2019-11-28 09:36:09
问题 I want send email by using *oracle 9i - Enterprise edition release 9.2.0.8.0 , *I know there is one package for oracle 10,but would you advice me about it for oracle 9i? Is there any package ? Can I sent email by Oracle 9i? Is there any way using an interface program such as a java program and send email via that one, if it is impossible to send mail by Oracle 9i... I mean I just send parameter to that program and send email by using that program. I can run write batch file,can we run Outlook

Importing .csv file into a Oracle Forms application

元气小坏坏 提交于 2019-11-27 07:24:53
问题 I've got a question how to import a .csv file into a Oracle Forms application. We are using Oracle Forms 11g on a Oracle 12c Database. Now we want to import a .csv file with the Forms applicationso our customers can import this file and write the data into the database. My plan is to create an application where the user can import a .csv file with a filechooser. The data from the .csv will be read and an output shows the user the data in this application. Then the user should be able to save