zoukankan      html  css  js  c++  java
  • oracle Form Builer:FIND_FORM Built-in

    Description                                            

    Searches the list of forms and returns a form module ID when it finds a valid form with the given name.

    you must define an appropriately typed variable to accept the return value. Define the variable with a type of Formmodule.

    Syntax                                                    

    FUNCTION FIND_FORM

    (formmodule_name VARCHAR2);

    Built-in Type unrestricted function

    Returns Formmodule

    Enter Query Mode yes

    Parameters                                                

    formomodule_name

      Specifies a valid VARCHAR2 form name.

    FIND_FORM Examples                                  

     /*** Built-in: FIND_FORM ** Example: Find a form's Id before inquiring about several ** of its properties */
    DECLARE
      fm_id  FormModule;
      tmpstr VARCHAR2(80);
    BEGIN
      fm_id  := Find_Form(:System.Current_Form);
      tmpstr := Get_Form_Property(fm_id, CURSOR_MODE);
      tmpstr := tmpstr || ',' || Get_Form_Property(fm_id, SAVEPOINT_MODE);
      Message('Form is configured as: ' || tmpstr);
    END;

    ############################## 通往精神的路很多,物质只是其中一种 ##############################
    http://www.onejava.com/article/oracle/wip/wiptop.htm
    https://docs.oracle.com/cd/A60725_05/html/comnls/us/index.htm
    http://www.oracle.com/technetwork/cn/developer-tools/apex/getting-started-094884-zhs.html
    https://docs.oracle.com/cd/B34956_01/current/html/docset.html
  • 相关阅读:
    ORA-06502: PL/SQL: 数字或值错误 PLS-00201: 必须声明标识符
    WINDOWS访问SAMBA提示没有权限
    C语言之isatty函数(判断文件描述词是否是为终端机)
    Centos7更改网卡名称eth0
    ReadLine自动补全分析
    GNU Readline库函数的应用示例
    GNU Readline 库及编程简介
    readline库的简单使用
    ls命令的修改时间显示到秒
    验证远程主机SSH指纹
  • 原文地址:https://www.cnblogs.com/pompeii2008/p/5341105.html
Copyright © 2011-2022 走看看