Re: CQL: Prepared statements

2013-08-28 Thread Alex Popescu
On Wed, Aug 28, 2013 at 4:01 AM, Vassilis Bekiaris < bekiar...@iconplatforms.com> wrote: > Hi, > > I think the introductory paragraphs in the Java Driver documentation [1] > provide good justification on the use of prepared statements: > > " ... but you can also use prepared statements, which onl

Re: CQL: Prepared statements

2013-08-28 Thread Jorge Bay Gondra
Nice!!! Thanks! 2013/8/28 Vassilis Bekiaris > Hi, > > I think the introductory paragraphs in the Java Driver documentation [1] > provide good justification on the use of prepared statements: > > " ... but you can also use prepared statements, which only need to be > parsed once by the cluster,

Re: CQL: Prepared statements

2013-08-28 Thread Vassilis Bekiaris
Hi, I think the introductory paragraphs in the Java Driver documentation [1] provide good justification on the use of prepared statements: " ... but you can also use prepared statements, which only need to be parsed once by the cluster, and then bind values to the variables and execute the bound

CQL: Prepared statements

2013-08-28 Thread Jorge Bay Gondra
Hi, I'm developing the Node.js CQL Driver and I've just finished implementing prepared statements through the binary protocol... I would like to provide driver users some guidance (use prepared queries when X / use normal queries when Y): Is there a