[ 
https://issues.apache.org/jira/browse/TORQUE-200?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thomas Fox closed TORQUE-200.
-----------------------------

    
> 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-beta1
>
>
> 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
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscr...@db.apache.org
For additional commands, e-mail: torque-dev-h...@db.apache.org

Reply via email to