Re: execute_prepared_cql_query and variable range filter parameter

2012-05-02 Thread Sylvain Lebresne
preparing again ? Thanks, - Pierre From: paul cannon [mailto:p...@datastax.com] Sent: lundi 30 avril 2012 23:36 To: user@cassandra.apache.org Subject: Re: execute_prepared_cql_query and variable range filter parameter Hi Pierre- Yes, each ? can only represent one value

RE: execute_prepared_cql_query and variable range filter parameter

2012-05-02 Thread Pierre Chalamet
Sure, here it is : CASSANDRA-4210. - Pierre -Original Message- From: Sylvain Lebresne [mailto:sylv...@datastax.com] Sent: mercredi 2 mai 2012 09:53 To: user@cassandra.apache.org Subject: Re: execute_prepared_cql_query and variable range filter parameter Pierre: do you mind opening

execute_prepared_cql_query and variable range filter parameter

2012-04-30 Thread Pierre Chalamet
Hi all, Is there a support in Cassandra 1.1 for variable range filter parameter (sorry I can't find a right name for that): select * from TestCF where key in (?) using execute_prepared_cql_query ? In the query above, it seems I can only bind one value to '?'. I mean, if several

Re: execute_prepared_cql_query and variable range filter parameter

2012-04-30 Thread paul cannon
Hi Pierre- Yes, each ? can only represent one value at a time (although it can take on a different value for each actual execution of the prepared query). This is certainly normal for SQL binding libraries. Not sure why you feel that defeats statement preparation. p On Mon, Apr 30, 2012 at 3:45

RE: execute_prepared_cql_query and variable range filter parameter

2012-04-30 Thread Pierre Chalamet
@cassandra.apache.org Subject: Re: execute_prepared_cql_query and variable range filter parameter Hi Pierre- Yes, each ? can only represent one value at a time (although it can take on a different value for each actual execution of the prepared query). This is certainly normal for SQL binding libraries

Re: execute_prepared_cql_query and variable range filter parameter

2012-04-30 Thread paul cannon
range filter parameter ** ** Hi Pierre- ** ** Yes, each ? can only represent one value at a time (although it can take on a different value for each actual execution of the prepared query). This is certainly normal for SQL binding libraries. Not sure why you feel that defeats