Hi Denis,

Yes, very good suggestion, I will try to do it later this week.

Thanks,

Aleksander


On Tue, Jun 10, 2014 at 2:56 PM, Denis <babichev_de...@mail.ru> wrote:

> Is  it  possible  to  add support for the assignment operator in mysql
> backend, as in postgresql_statement_backend::prepare():
>
> // Check whether this is an assignment(e.g. x:=y)
> // and treat it as a special case, not as a named binding
> else if ((next_it != end) && (*next_it == '='))
> {
>     query_ += ":=";
>     ++it;
> }
>
> Cause expressions like these:
> UPDATE t1 SET c1 = 2 WHERE c1 = @var1 := 1;
> performed with an error.
>
>
>
> ------------------------------------------------------------------------------
> HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions
> Find What Matters Most in Your Big Data with HPCC Systems
> Open Source. Fast. Scalable. Simple. Ideal for Dirty Data.
> Leverages Graph Analysis for Fast Processing & Easy Data Exploration
> http://p.sf.net/sfu/hpccsystems
> _______________________________________________
> soci-users mailing list
> soci-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/soci-users
>
------------------------------------------------------------------------------
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions
Find What Matters Most in Your Big Data with HPCC Systems
Open Source. Fast. Scalable. Simple. Ideal for Dirty Data.
Leverages Graph Analysis for Fast Processing & Easy Data Exploration
http://p.sf.net/sfu/hpccsystems
_______________________________________________
soci-users mailing list
soci-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/soci-users

Reply via email to