Re: PHP CQL Driver

2011-05-29 Thread Kwasi Gyasi - Agyei
Sorry that was a typo the query I had in my test case reads as follows: $query = "CREATE COLUMNFAMILY smoke (KEY text PRIMARY KEY, monkey text) WITH comparator = text AND default_validation = text"; thanks for your response, still have the same issue. it seems thrift php interface exception aren

Re: PHP CQL Driver

2011-05-28 Thread Eric Evans
On Thu, 2011-05-26 at 20:51 +0200, Kwasi Gyasi - Agyei wrote: > CREATE COLUMNFAMILY magic (KEY text PRIMARY KEY, monkey ) WITH > comparator = text AND default_validation = text That's not a valid query. If monkey is a column definition, then it needs a type. If you're trying to name the key, don

Re: PHP CQL Driver

2011-05-26 Thread Kwasi Gyasi - Agyei
yep, works perfectly @ http://caqel.deadcafe.org/ I will try my luck @ phpcassa. Thanks for your time gentlemen. On Thu, May 26, 2011 at 8:59 PM, Sasha Dolgy wrote: > maybe you'd have more luck discussing this on the phpcassa list? > https://groups.google.com/forum/#!forum/phpcassa > > more ex

Re: PHP CQL Driver

2011-05-26 Thread Sasha Dolgy
maybe you'd have more luck discussing this on the phpcassa list? https://groups.google.com/forum/#!forum/phpcassa more experience there with PHP and Cassandra ... Are you able to validate the query works when not using PHP? On Thu, May 26, 2011 at 8:51 PM, Kwasi Gyasi - Agyei wrote: > got syste

Re: PHP CQL Driver

2011-05-26 Thread Kwasi Gyasi - Agyei
got system in debug mode the following query fails --- CREATE COLUMNFAMILY magic (KEY text PRIMARY KEY, monkey ) WITH comparator = text AND default_validation = text PHP error reads - #0 /Volumes/DATA/Project/libs/php/phpCQL/vendor/cassandra/c

Re: PHP CQL Driver

2011-05-26 Thread aaron morton
Cool, this may be a better discussion for the client-dev list http://www.mail-archive.com/client-dev@cassandra.apache.org/ I would start by turning up the server logging to DEBUG and watching your update / select queries. Cheers - Aaron Morton Freelance Cassandra Developer @aar

PHP CQL Driver

2011-05-25 Thread Kwasi Gyasi - Agyei
Hi, I have manged to generate thrift interface for php along with implementing auto-loading of both Cassandra and thrift core class. However during my testing the only query that works as expected is the create keyspace cql query... all other queries don't do or return any results nor do they thr