[
https://issues.apache.org/jira/browse/TORQUE-200?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13273425#comment-13273425
]
G Monroe commented on TORQUE-200:
---------------------------------
Doesn't the Criteria.setSingleRecord(boolean b) method do the same thing?
> Generate methods in Peer classes to retrieve a single object from a table
> -------------------------------------------------------------------------
>
> Key: TORQUE-200
> URL: https://issues.apache.org/jira/browse/TORQUE-200
> Project: Torque
> Issue Type: Improvement
> Components: Templates
> Reporter: Thomas Fox
> Assignee: Thomas Fox
> Fix For: 4.0
>
>
> Often, one knows that a database query will return at most a single object.
> To get that object, the following code is needed:
> List<Book> bookList = BookPeer.doSelect(criteria);
> Book book = null;
> if (bookList.size > 1)
> {
> throw new TooManyRowsException("...");
> }
> if (!bookList.isEmpty())
> {
> book = bookList.get(0);
> }
> There should be methods named doSelectSingleRecord(...) generated in the Peer
> class which contains teh above code.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]