The six statement-type elements take various attributes. See Mapped Statements for a table itemizing which attributes each element-type accepts. The individual attributes are described in the sections that follow.
The required id attribute provides a name for this statement, which must be unique within this <SqlMap>.
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 <parameterMap> and a corresponding
<statement>.
SQLMap also supports named, inline parameters, which most developers seem to prefer. However, Parameter Maps are useful when the SQL must be kept in a standard form or when extra information needs to be provided. See Parameter Maps for futher details.
If a parameterMap attribute is not specified, you may specify a parameterClass instead and use inline parameters. The value of the parameterClass attribute can be any existing PHP class name. The following example shows a statement using a PHP class named Product in parameterClass attribute.
A Result Map lets you control how data is extracted from the result of a query, and how the columns are mapped to object properties. The following example shows a <resultMap> element and a corresponding <statement> element.
In the above example, the result of the SQL query will be mapped to an instance of the Product class using the "select-product-result" <resultMap>. The <resultMap> says to populate the id property from the PRD_ID column, and to populate the description property from the PRD_DESCRIPTION column.
See Result Maps for futher details.
If a resultMap is not specified, you may specify a resultClass instead. The value of the resultClass attribute can be the name of a PHP class or primitives like integer, string, or array. The class specified will be automatically mapped to the columns in the result, based on the result metadata. The following example shows a <statement> element with a resultClass attribute.
In the above example, the Person class has properties including: Id, FirstName, LastName, BirthDate, WeightInKilograms, and HeightInMeters. Each of these corresponds with the column aliases described by the SQL select statement using the "as" keyword, a standard SQL feature. When executed, a Person object is instantiated and populated by matching the object property names to the column names from the query.
Using SQL aliases to map columns to properties saves defining a <resultMap> element, but there are limitations. There is no way to specify the types of the output columns (if needed), there is no way to automatically load related data such as complex properties.You can overcome these limitations with an explicit Result Map.
In addition to providing the ability to return an TList of objects, the DataMapper supports the use of custom collection: a class that implements ArrayAccess. The following is an example of a TList (it implements ArrayAccess) class that can be used with the DataMapper.
An ArrayAccess class can be specified for a select statement through the listClass attribute. The value of the listClass attribute is the full name of a PHP class that implements ArrayAccess. The statement should also indicate the resultClass so that the DataMapper knows how to handle the type of objects in the collection. The resultClass specified will be automatically mapped to the columns in the result, based on the result metadata. The following example shows a <statement> element with a listClass attribute.
If you want to cache the result of a query, you can specify a Cache Model as part of the <statement> element. The following example shows a <cacheModel> element and a corresponding <statement>.
In the above example, a cache is defined for products that uses a Least Recently Used [LRU] type and flushes every 24 hours or whenever associated update statements are executed. See Cache Models for futher details
When writing Sql, you often encounter duplicate fragments of SQL. SQLMap offers a simple yet powerful attribute to reuse them.