Edit D:\app\Administrator\product\11.2.0\dbhome_1\oc4j\j2ee\oc4j_applications\applications\em\em\online_help\tdddg\tdddg_subprograms020.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <script src="./callback.js" type="text/javascript"></script> <noscript>Your browser does not support JavaScript. This help page requires JavaScript to render correctly.</noscript> </head> <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta name="generator" content="Oracle DARB XHTML Converter (Mode = ohj/ohw) - Version 5.1.1 Build 005" /> <meta name="date" content="2009-04-21T9:46:24Z" /> <meta name="robots" content="noarchive" /> <meta name="doctitle" content="Ensuring that Variables, Constants, and Parameters Have Correct Data Types" /> <meta name="relnum" content="11g Release 2 (11.2)" /> <meta name="partnum" content="E10766-01" /> <link rel="copyright" href="./dcommon/html/cpyr.htm" title="Copyright" type="text/html" /> <link rel="stylesheet" href="./dcommon/css/blafdoc.css" title="Oracle BLAFDoc" type="text/css" /> <link rel="contents" href="toc.htm" title="Contents" type="text/html" /> <link rel="prev" href="tdddg_subprograms019.htm" title="Previous" type="text/html" /> <link rel="next" href="tdddg_subprograms021.htm" title="Next" type="text/html" /> <title>Ensuring that Variables, Constants, and Parameters Have Correct Data Types</title> </head> <body> <div class="zz-skip-header"><a href="#BEGIN">Skip Headers</a></div> <table class="simple oac_no_warn" summary="" cellspacing="0" cellpadding="0" width="100%"> <col width="86%" /> <col width="*" /> <tr valign="bottom"> <td align="left"></td> <td align="center"><a href="tdddg_subprograms019.htm"><img width="24" height="24" src="./dcommon/gifs/leftnav.gif" alt="Previous" /><br /> <span class="icon">Previous</span></a> </td> <td align="center"><a href="tdddg_subprograms021.htm"><img width="24" height="24" src="./dcommon/gifs/rightnav.gif" alt="Next" /><br /> <span class="icon">Next</span></a></td> </tr> </table> <p><a id="BABBHBGA" name="BABBHBGA"></a><a id="TDDDG42220" name="TDDDG42220"></a></p> <div class="sect2"><!-- infolevel="all" infotype="General" --> <h1>Ensuring that Variables, Constants, and Parameters Have Correct Data Types</h1> <a name="BEGIN" id="BEGIN"></a> <p><a id="sthref410" name="sthref410"></a><a id="sthref411" name="sthref411"></a><a id="sthref412" name="sthref412"></a>After <a href="tdddg_subprograms019.htm#CIHBGDBA">"Tutorial: Declaring Variables and Constants in a Subprogram"</a>, the code for the <code>calculate_score</code> function, in the body of the package <code>EMP_EVAL</code>, is:</p> <pre xml:space="preserve" class="oac_no_warn"> FUNCTION calculate_score ( evaluation_id IN NUMBER , performance_id IN NUMBER ) RETURN NUMBER AS n_score NUMBER(1,0); -- variable n_weight NUMBER; -- variable max_score CONSTANT NUMBER(1,0) := 9; -- constant, initial value 9 max_weight CONSTANT NUMBER(8,8) := 1; -- constant, initial value 1 BEGIN /* TODO implementation required */ RETURN NULL; END calculate_score; </pre> <p>The variables, constants, and parameters of the function represent values from the tables <code>SCORES</code> (created in <a href="tdddg_objects007.htm#BABEECGC">"Creating Tables with the CREATE TABLE Statement"</a>) and <code>PERFORMANCE_PARTS</code> (created in <a href="tdddg_objects006.htm#BABJEJEG">"Tutorial: Creating a Table with the Create Table Tool"</a>):</p> <ul> <li> <p>Variable <code>n_score</code> will hold a value from the <code>SCORE</code> column of the <code>SCORES</code> table, and constant <code>max_score</code> will be compared to such values.</p> </li> <li> <p>Variable <code>n_weight</code> will hold a value from the <code>WEIGHT</code> column of the <code>PERFORMANCE_PARTS</code> table, and constant <code>max_weight</code> will be compared to such values.</p> </li> <li> <p>Parameter <code>evaluation_id</code> will hold a value from the <code>EVALUATION_ID</code> column of the <code>SCORES</code> table.</p> </li> <li> <p>Parameter <code>performance_id</code> will hold a value from the <code>PERFORMANCE_ID</code> column of the <code>SCORES</code> table.</p> </li> </ul> <p>Therefore, each variable, constant, and parameter has the same data type as its corresponding column.</p> <p>If the data types of the columns change, you want the data types of the variables, constants, and parameters to change to the same data types; otherwise, the <code>calculate_score</code> function will be invalidated.</p> <p>To ensure that the data types of the variables, constants, and parameters will always match those of the columns, declare them with the <a id="sthref413" name="sthref413"></a><a id="sthref414" name="sthref414"></a><code>%TYPE</code> attribute. The <code>%TYPE</code> attribute supplies the data type of a table column or another variable, ensuring the correct data type assignment.</p> <div class="helpinfonotealso"> <h2>Related Topics</h2> <p><a href="javascript:open('http://www.oracle.com/pls/db112/lookup?id=LNPLS99970','newWindow').focus()"><span class="italic">Oracle Database PL/SQL Language Reference</span></a> for more information about the <code>%TYPE</code> attribute</p> <p><a href="javascript:open('http://www.oracle.com/pls/db112/lookup?id=LNPLS01352','newWindow').focus()"><span class="italic">Oracle Database PL/SQL Language Reference</span></a> for the syntax of the <code>%TYPE</code> attribute</p> <p><a href="tdddg_subprograms018.htm#CIHBCBHC">Declaring and Assigning Values to Variables and Constants</a></p> </div> </div> <!-- class="sect2" --> <!-- Start Footer --> <div class="footer"> <table class="simple oac_no_warn" summary="" cellspacing="0" cellpadding="0" width="100%"> <col width="86%" /> <col width="*" /> <tr> <td align="left"><span class="copyrightlogo">Copyright © 1996, 2009, Oracle and/or its affiliates. All rights reserved.</span><br /> <a href="./dcommon/html/cpyr.htm"><span class="copyrightlogo">Legal Notices</span></a></td> <td align="center"><a href="tdddg_subprograms019.htm"><img width="24" height="24" src="./dcommon/gifs/leftnav.gif" alt="Previous" /><br /> <span class="icon">Previous</span></a> </td> <td align="center"><a href="tdddg_subprograms021.htm"><img width="24" height="24" src="./dcommon/gifs/rightnav.gif" alt="Next" /><br /> <span class="icon">Next</span></a></td> </tr> </table> </div> <!-- class="footer" --> </body> </html>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de