Oracle APEX Best Practices
上QQ阅读APP看书,第一时间看更新

Conventions

In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.

Code words in text are shown as follows: "These settings can also be set manually with the APEX_INSTANCE_ADMIN API."

A block of code is set as follows:

BEGIN
  wwv_flow_api.set_security_group_id(p_security_group_id=>10); 
  wwv_flow_fnd_user_api.create_fnd_user( 
    p_user_name     => 'second_admin', 
    p_email_address => 'email@company.com',
    p_web_password  => 'second_admin_password') ; 
END;
/
COMMIT
/

Any command-line input or output is written as follows:

@apexins tablespace_apex tablespace_files tablespace_temp images

New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Select the appropriate settings for Disable Administrator Login and Disable Workspace Login."

Note

Warnings or important notes appear in a box like this.

Tip

Tips and tricks appear like this.