Hi This might be basic question but I am new to Ibatis. queryForList will return list of which objects? Generally for queryForObject we define a resultMap but no such map is defined for queryForList.
Thanks in advance.
|
Hi This might be basic question but I am new to Ibatis. queryForList will return list of which objects? Generally for queryForObject we define a resultMap but no such map is defined for queryForList. Thanks in advance. |
|||
|
|
|
Let's say you have the following configuration in your mapping XML:
Then you can use queryForList to retrieve the result set in List form and iterate through its entries, like this:
|
|||
|
|
|
You just define a resultMap for query regardles of how many rows it is supposed to return. If you call queryforObject() then iBatis will assume that query schould return just one row. If I remember correctly it will throw exception if it returns more rows. If you call queryForList() then iBatis will assume query can return more than one row. In both scenarios for every row returned iBatis will do transformation based on resultMap, so you can think about resultMap as a recipe how to convert a single row into a single object. |
|||
|
|
|
Yep that's right iBatis will throw an exception if more than one record is found when If your using queryForList you can define a resultMap and I would rather define my resultMap with the returned class type and do the property to column mapping there. I think this looks more clean (looking at your DAO class it is easy to read and abstracted) and better abstracted. However this is my opinion.
queryForList("retrieveAccounts"); |
|||
|
|