Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is Oracle Forms and what is it used for?
What is Oracle Forms and what is it used for?
✍: Guest
Oracle Forms is a 4GL Rapid Application Development (RAD) environment. Forms Builder is used to create applications to enter, access, change, or delete data from Oracle (and other) databases. The Forms Runtime environment is required to execute compiled Forms modules. Forms can also be deployed across the Web using the Oracle [Internet Application Server]] (iAS) Forms Services.
Oracle Forms is part of Oracle's Internet Developer Suite (iDS). Previous versions of it was called SQL*Forms.
[edit] Can one convert/reverse engineer a FMX back to a FMB file?
Unfortunately not. One should always backup the FMB files to ensure they are not lost. The best you can do is to open the FMX file in a good text editor and copy most of your SQL out of it. After that, you will have to recreate the form from scratch.
[edit] Can an Forms FMX be moved from one operating system to another?
No, FMX files are operating system dependent. On the other hand, FMB's are not. So, you can just copy your FMB files to the new operating system and regenerate them.
PS: You also need to regenerate the FMB files after upgrading to a new Forms version.
2011-03-15, 5880👍, 0💬
Popular Posts:
How To Build WHERE Criteria with Web Form Search Fields? - MySQL FAQs - Managing Tables and Running ...
Which one of the following statements is TRUE in regard to overloading the ++ operator? 1 You cannot...
How To Run a JUnit Test Class? A JUnit test class usually contains a number of test methods. You can...
Wha is the output from System.out.println("Hell o"+null);?Hellonull
Which bit wise operator is suitable for turning on a particular bit in a number? The bitwise OR oper...