Blame | Letzte Änderung | Log anzeigen | RSS feed
<com:TContent ID="body"><h1>Statement-type Element Attributes</h1><p>The six statement-type elements take various attributes. See<a href="?page=Manual.MappedStatements">Mapped Statements</a> for atable itemizing which attributes eachelement-type accepts. The individual attributes are described in the sectionsthat follow.</p><h2><tt>id</tt> attribute</h2><p>The required <tt>id</tt> attribute provides a name for this statement, which mustbe unique within this <tt><SqlMap></tt>.</p><h2><tt>parameterMap</tt> attribute</h2><p>A Parameter Map defines an ordered list of values that match up with the "?"placeholders of a standard, parameterized query statement.The following example shows a <tt><parameterMap></tt> and a corresponding<tt><statement></tt>.<com:TTextHighlighter Language="xml" CssClass="source"><parameterMap id="insert-product-param" class="Product"><parameter property="id"/><parameter property="description"/></parameterMap><statement id="insertProduct" parameterMap="insert-product-param">insert into PRODUCT (PRD_ID, PRD_DESCRIPTION) values (?,?);</statement></com:TTextHighlighter>In the above example, the Parameter Map describes two parameters thatwill match, in order, two placeholders in the SQL statement. The first "?"is replaced by the value of the <tt>id</tt> property. The second is replaced withthe <tt>description</tt> property.</p><p>SQLMap also supports named, inline parameters, which most developers seem toprefer. However, Parameter Maps are useful when the SQL must be kept in astandard form or when extra information needs to be provided. See<a href="?page=Manual.ParameterMap">Parameter Maps</a> for futher details.</p><h2><tt>parameterClass</tt> attribute</h2><p>If a <tt>parameterMap</tt> attribute is not specified, you may specify a<tt>parameterClass</tt> instead and use <a href="?page=Manual.InlineParameterMaps">inline parameters</a>.The value of the <tt>parameterClass</tt> attributecan be any existing PHP class name. The following example shows astatement using a PHP class named <tt>Product</tt> in <tt>parameterClass</tt>attribute.</p><com:TTextHighlighter Language="xml" CssClass="source"><statement id="statementName" parameterClass="Product">insert into PRODUCT values (#id#, #description#, #price#)</statement></com:TTextHighlighter><h2><tt>resultMap</tt> attribute</h2><p>A Result Map lets you control how data is extracted from the result of aquery, and how the columns are mapped to object properties.The following example shows a <tt><resultMap></tt> element and acorresponding <tt><statement></tt> element.</p><com:TTextHighlighter Language="xml" CssClass="source"><resultMap id="select-product-result" class="product"><result property="id" column="PRD_ID"/><result property="description" column="PRD_DESCRIPTION"/></resultMap><statement id="selectProduct" resultMap="select-product-result">select * from PRODUCT</statement></com:TTextHighlighter><p>In the above example, the result of the SQL query will be mapped toan instance of the <tt>Product</tt> class using the "select-product-result"<tt><resultMap></tt>. The <tt><resultMap></tt> says topopulate the <tt>id</tt> propertyfrom the <tt>PRD_ID</tt> column, and to populate the <tt>description</tt> propertyfrom the <tt>PRD_DESCRIPTION</tt> column.</p><div class="tip"><b class="tip">Tip:</b>In the above example, note that using "<tt> select * </tt>" is supported. Ifyou want all the columns, you don't need to map them all individually. (Thoughmany developers consider it a good practice to always specify the columnsexpected.)</div><p>See <a href="?page=Manual.ResultMaps">Result Maps</a> for futher details.</p><h2><tt>resultClass</tt> attribute</h2><p>If a <tt>resultMap</tt> is not specified, you may specify a <tt>resultClass</tt>instead. The value of the <tt>resultClass</tt> attribute can be the name of a PHPclass or primitives like <tt>integer</tt>, <tt>string</tt>, or <tt>array</tt>. The classspecified will be automatically mapped to the columns in the result, based onthe result metadata. The following example shows a <tt><statement></tt> elementwith a <tt>resultClass</tt> attribute.</p><com:TTextHighlighter Language="xml" CssClass="source"><statement id="SelectPerson" parameterClass="int" resultClass="Person">SELECTPER_ID as Id,PER_FIRST_NAME as FirstName,PER_LAST_NAME as LastName,PER_BIRTH_DATE as BirthDate,PER_WEIGHT_KG as WeightInKilograms,PER_HEIGHT_M as HeightInMetersFROM PERSONWHERE PER_ID = #value#</statement></com:TTextHighlighter><p>In the above example, the <tt>Person</tt> class has properties including:<tt>Id</tt>, <tt>FirstName</tt>, <tt>LastName</tt>, <tt>BirthDate</tt>,<tt>WeightInKilograms</tt>, and <tt>HeightInMeters</tt>. Each of these correspondswith the column aliases described by the SQL select statement using the "as"keyword, a standard SQL feature. When executed, a <tt>Person</tt> object isinstantiated and populated by matching the object property names to the columnnames from the query.</p><p>Using SQL aliases to map columns to properties saves defining a<tt><resultMap></tt> element, but there are limitations. There is no way tospecify the types of the output columns (if needed), there is no way toautomatically load related data such as complex properties.You can overcomethese limitations with an explicit <a href="?page=Manual.ResultMaps">Result Map</a>.</p><h2><tt>listClass</tt> attribute</h2><p>In addition to providing the ability to return an <tt>TList</tt> of objects, theDataMapper supports the use of custom collection: a class that implements<tt>ArrayAccess</tt>. The following is an example of a TList (it implementsArrayAccess) class that can be used with the DataMapper.</p><com:TTextHighlighter Language="php" CssClass="source">class AccountCollection extends TList{public function addRange($accounts){foreach($accounts as $account)$this->add($account);}public function copyTo(TList $array){$array->copyFrom($this);}}</com:TTextHighlighter><p>An <tt>ArrayAccess</tt> class can be specified for a select statement through the<tt>listClass</tt> attribute. The value of the <tt>listClass</tt> attribute is thefull name of a PHP class that implements <tt>ArrayAccess</tt>. The statementshould also indicate the <tt>resultClass</tt> so that the DataMapper knows how tohandle the type of objects in the collection. The <tt>resultClass</tt> specifiedwill be automatically mapped to the columns in the result, based on the resultmetadata. The following example shows a <tt><statement></tt> element with a<tt>listClass</tt> attribute.</p><com:TTextHighlighter Language="xml" CssClass="source"><statement id="GetAllAccounts"listClass="AccountCollection"resultClass="Account">selectAccount_ID as Id,Account_FirstName as FirstName,Account_LastName as LastName,Account_Email as EmailAddressfrom Accountsorder by Account_LastName, Account_FirstName</statement></com:TTextHighlighter><h2><tt>cacheModel</tt> attribute</h2><p>If you want to cache the result of a query, you can specify a Cache Model aspart of the <tt><statement></tt> element. The following example shows a<tt><cacheModel></tt> element and a corresponding <tt><statement></tt>.</p><com:TTextHighlighter Language="xml" CssClass="source"><cacheModel id="product-cache" implementation="LRU"><flushInterval hours="24"/><flushOnExecute statement="insertProduct"/><flushOnExecute statement="updateProduct"/><flushOnExecute statement="deleteProduct"/><property name="size" value="1000" /></cacheModel><statement id="selectProductList" parameterClass="int" cacheModel="product-cache">select * from PRODUCT where PRD_CAT_ID = #value#</statement></com:TTextHighlighter><p>In the above example, a cache is defined for products that uses aLeast Recently Used [LRU] type and flushes every 24 hours or wheneverassociated update statements are executed. See<a href="?page=Manual.CacheModels">Cache Models</a> for futher details</p><h2><tt>extends</tt> attribute</h2><p>When writing Sql, you often encounter duplicate fragments of SQL. SQLMapoffers a simple yet powerful attribute to reuse them.</p><com:TTextHighlighter Language="xml" CssClass="source"><select id="GetAllAccounts"resultMap="indexed-account-result">selectAccount_ID,Account_FirstName,Account_LastName,Account_Emailfrom Accounts</select><select id="GetAllAccountsOrderByName"extends="GetAllAccounts"resultMap="indexed-account-result">order by Account_FirstName</select></com:TTextHighlighter></com:TContent>