You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by "Dzmitry Kazimirchyk (JIRA)" <ji...@apache.org> on 2016/01/22 17:03:39 UTC

[jira] [Assigned] (CAY-2053) SQLExec fluent query API

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

Dzmitry Kazimirchyk reassigned CAY-2053:
----------------------------------------

    Assignee: Dzmitry Kazimirchyk

> SQLExec fluent query API
> ------------------------
>
>                 Key: CAY-2053
>                 URL: https://issues.apache.org/jira/browse/CAY-2053
>             Project: Cayenne
>          Issue Type: Improvement
>            Reporter: Dzmitry Kazimirchyk
>            Assignee: Dzmitry Kazimirchyk
>
> Implement fluent API for non-selecting SQL queries.
> Some examples of the new SQLExec query syntax:
> {code:java}
> // insert
> int inserted = SQLExec.query("INSERT INTO ARTIST (ARTIST_ID, ARTIST_NAME) VALUES (#bind($id), #bind($name))").paramsArray(55, "a3").update(context);
> // update
> int updated = SQLExec.query("UPDATE ARTIST SET ARTIST_NAME = 'b3' WHERE ARTIST_NAME = 'a3'").update(context);
> {code}
> Also the plan is to use List<QueryResult> instead of our current ugly QueryResponse in ObjectContext.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)