Re: Java fluent interface for CQL

2014-05-17 Thread Tupshin Harper
Pull requests encouraged. :) -Tupshin On May 17, 2014 7:43 PM, "Kevin Burton" wrote: > AH… looks like there's one in the Datastax java driver. Looks like it > doesn't support everything but probably supports the features I need ;) > > So I'll just use that! > > > On Sat, May 17, 2014 at 12:39 P

Re: Java fluent interface for CQL

2014-05-17 Thread Kevin Burton
AH… looks like there's one in the Datastax java driver. Looks like it doesn't support everything but probably supports the features I need ;) So I'll just use that! On Sat, May 17, 2014 at 12:39 PM, Kevin Burton wrote: > In our MySQL stack we've been using a fluent interface for Java I > deve

Java fluent interface for CQL

2014-05-17 Thread Kevin Burton
In our MySQL stack we've been using a fluent interface for Java I developed about five years ago but never open sourced. It's similar to: MSelect sele = MSelect.newInstance(); sele.addTable( Foo.NAME ) .addWhereIsEqual( Foo.COL_A, "bar" ) .setLimit( 10 ) ; … of course embedding CQL