Tagged Questions

CQL, the Cassandra Query Language, is based closely on SQL. It is roughly a subset of SQL, but CQL is not a strict subset of SQL because it requires support for wide families and column families.

learn more… | top users | synonyms

6
votes
3answers
233 views

How to restrict NDepend methods query on type attribute

I'm trying to get NDepend to identify long methods using a modified version of the standard "Methods too big" query. I don't want to report long methods that the developers have little control over, ...
5
votes
2answers
118 views

Does a .NET CQL Parser Exist?

I haven't been able to find a .NET (c#) CQL parser, despite my best Googling efforts. Anyone have one they'd be willing to share, or know if one exists? Thanks!
5
votes
1answer
166 views

Driving NDepend with NUnit

Is it possible to use NUnit to run CQL queries using NDepend? It would be nice to be able to just include the NDepend dlls in a UnitTests library and write tests like: [Test] public void ...
3
votes
1answer
267 views

NDepend CQL Count Query

I want to query a table of public methods of a specific class and a count of each methods usage in NDepend CQL. Currently query looks like this: SELECT METHODS FROM TYPES ...
2
votes
1answer
42 views

Trying to find all methods that don't have a direct dependency on Microsoft.SharePoint.* or System.Web.UI.*

I'm trying to write a CQL query in Visual NDepend to find all types and methods that don't directly depend on any type from a list of namespaces. The Query I've built so far is this one: SELECT ...
2
votes
1answer
331 views

How to use cql queries to get different datatypes out of cassandra with java client hector

I'm new to cassandra and hector so i'm trying to execute cql queries but the problem is that not all columns are of type string so how dow I execute the query "select * from users"? My column family ...
2
votes
1answer
303 views

Cassandra CQL unable to insert (no viable alternative at input)

After setup cassandra (0.8.4) and tested with insert and select via CLI, i move on to JDBC (1.0.3) with CQL. This is where, i encounter SQLException on following code, any idea? Connection conn = ...
2
votes
1answer
210 views

Cassandra is not updating data with CQL, with mutator it does

With the following code I try to update a row Keyspace fKeyspace = HFactory.createKeyspace(KEYSPACE, fCluster); // Update with CQL CqlQuery<String,String,String> cqlQuery = new ...
2
votes
0answers
106 views

Detect unprotected code using cppdepend to audit missing outer guard in call chain?

I'm trying to detect code which is unprotected by a guard clause at a higher level in its callers. I think I can get quite close with cppdepend but unsure if I can precisely identify problems. I have ...
2
votes
1answer
42 views

CQL request composition

Is it possible to compose requests in CQL ? I would like to write something like: SELECT TYPES FROM ASSEMBLIES "myassemblie" WHERE IsUsing SELECT METHODS FROM ASSEMBLIES "myotherassemblie" WHERE ...
2
votes
0answers
98 views

Ndepend CQL to find methods of certain types using particular framework assembly

In order to check if types not derived from certain base classes are using a low-level framework assembly, the following query can be used. SELECT TYPES WHERE IsDirectlyUsing ...
2
votes
1answer
351 views

Most helpful NDepend CQL queries

A client I work for has begun using NDepend as a replacement for FXCop, and the "architect" has compiled a list of practically unusable CQL queries, which I gather he has taken from advice from the ...
1
vote
1answer
46 views

How can i list Cassandra cql result? Do i have to parse JSON?

How can i parse my json style result from Cassandra? I'm using the cassandra-cql gem for rails and i want to parse the query result to list all messages. My query looks like: def self.get_messages ...
1
vote
1answer
45 views

Cassandra cql kind of multiget

i want to make a query for two column families at once... I'm using the cassandra-cql gem for rails and my column families are: users following followers user_count message_count messages Now i want ...
1
vote
1answer
48 views

Cassandra cql comparator type counter

i want to use the following code for updating a field... @@db.execute("UPDATE user_count SET counters = counters + #{val} WHERE cid = 1 ") First time i tried that i got the following fail: ...
1
vote
1answer
92 views

cassandra cql query substitution

Explanation with an example: import cql cql connect to CF/Keyspace last_key = XYZ (say it's getting fetched from else where) cursor.execute(select * from domain_dimension where key=:key", ...
1
vote
1answer
71 views

count rows in column family => Cassandra

Hi i'm using the cassandra-cql gem for Ruby on Rails. I need to count all users. In my case users are rows in the users column family. Users have (id, first_name, last_name, email) The code below ...
1
vote
3answers
151 views

Are there any PHP CQL drivers/clients available

Are there any php extensions for cassandra yet like the php_mysql extension, or are there any PHP wrappers available. I have seen phpCassa and similar ones but it doesnt quite have the same ...
1
vote
1answer
125 views

Select First N from Cassandra Column using CQL

How to get First N columns of a given row key in Cassandra? cqlsh> select FIRST 5 from Daily_Domain_Stats where KEY = '20111110:1'; Bad Request: line 1:15 no viable alternative at input 'from' ...
1
vote
1answer
699 views

Cassandra CQL JDBC driver

What should be the connection string while using CQL jdbc driver? Will I be able to find a proper/complete example for CQL using CQL JDBC driver in Java online? Regards, Tamil
1
vote
1answer
122 views

phpcassa usual query methods or cql queries?

Can you recommend what methods of queries to choose?Cql or usual classes? Phpcassa has both methods.cql is more comfortable than usual.but what will be efficiently?
1
vote
1answer
27 views

CA1008: Enums should have zero value convert to CQL(Code Query Language)

I'm trying to CQL transforms all Code Analysis for Managed Code Warnings from msdn for use in NDepend. The CA1008 which says that enumerations should have a value equal to zero, is giving me problems. ...
1
vote
1answer
397 views

Hector integration with CQL

Will Hector be integrated with CQL in Cassandra 0.8.1? Is anyone actively developing this or know of it? Also, does anyone know of any other Java clients (like Pelops, Hector, Kundera, etc) that are ...
1
vote
1answer
65 views

Is it possible with nDepend and CQL today to ask for classes directly using classes of a derived type?

Been reading through a lot of Q's and posts and see that subqueries/nested queries/query composition will not be supported until the next version. However I'm not sure if that is what I need, in my ...
1
vote
1answer
102 views

Building CQL in NDepend for verifying MVVM patterns

I wanted to verify few design patterns in C# code by static analysis. I want to verify these using NDepend. The application is built with MVVM design style, so typical design patterns that I would ...
1
vote
1answer
46 views

CQL constraint of list of classes to find bases with non-virtual destructors?

Is it possible to use cppdepend (yes C++) to do the equivalent of Make destructors virtual in base classes as Scott Meyers discussed in his very old comparison of C++ analysis tools? I can list ...
1
vote
1answer
49 views

CQL in ndepend and cppdepend to see changes in metrics across revisions

CQL makes it easy to find methods where CodeWasChanged but I also need to compare the metrics - I want to find modified code and see if it has improved or not. I'm evaluating ndepend and cppdepend ...
1
vote
1answer
66 views

Exposing CQL Result in NDepend

I have some custom CQLs in NDepend Project and I want generate the results of these CQLs using NDepend.Console.exe. When I generate the report, I don't see any result of my custom CQLs in the report. ...
1
vote
1answer
109 views

How can I find which property getters have side effects using NDepend?

A familiar problem using VisualStudio is the mysterious calling of property getters. If these have side effects (the most common being of the form if (foo == null) foo = new foo(); return foo; ), then ...
1
vote
1answer
134 views

NDepend query methods/types in framework assembly being used by other assemblies/types

I am trying to determine which types or methods in a base framework assembly are being used by other assemblies in the application system. I cannot seem to find a straight-cut query to do that. What ...
1
vote
1answer
134 views

Ndepend CQL to query types out of assembly wildcard

In order to determine what low-level framework types a web application is directly using, one has to define each and every assembly involved. SELECT TYPES FROM ASSEMBLIES "Company.System.Framework", ...
1
vote
1answer
198 views

NDepend Code Quality Metrics - Custom CQL - Brownfield development

I'm working on a brown-field project that was initially developed for .NET 1.1, and subsequently was retro-fitted to .NET 2.0, with a smattering of .NET 3.5 I'm curious what kind of metrics to use to ...
0
votes
1answer
22 views

How to store binary data with cassandra cql

i'm using Ruby on Rails and i want to store images into the cassandra database directly. How can i store files with the cassandra-cql gem into the cassandra database? And how can i display this file ...
0
votes
1answer
29 views

How can i sort Cassandra-cql Results by timestamp?

Hi how can i sort my entries by the timestamp of the columns? def self.get_users @@db.execute("SELECT * FROM users") end
0
votes
1answer
49 views

NDepend rule for “Dispose objects before losing scope”

I'm evaluating NDepend as a part of an effort to enforce code quality and correct framework usage, and I am looking for a way to write the equivalent of CA2000: Dispose objects before losing scope. ...
0
votes
1answer
66 views

wrong count(*) with cassandra-cql

Hi i tried to create some users for my testing ... i can create users in a loop from 0..100000 using the cassandra-cql gem for RoR ... then i count the users in my database and there are only 10000 ...
0
votes
1answer
53 views

does cassandra cql support aggregation functions, like group by and order by

For example in CQL, SELECT * from abc_dimension ORDER BY key ASC; seems to be not working. Any help?
0
votes
3answers
349 views

Cassandra PHP interface with CQL available/planned?

I'm trying to plan a web application that should use a noSQL solution - Cassandra seems to be a good solution. I saw there are libraries for PHP to manipulate the database like phpCassa. Also I saw ...
0
votes
1answer
26 views

Finding Types that implement specific Methods using CQL

I'm refining the built in dead code query in NDEpend and I'm finding a lot of false positives from standalone programs (i.e. w/ Main() entrypoints). I noticed that the built in unused types query ...
0
votes
1answer
551 views

How to get the maintainability index?

I need help... How can I create the maintainability index with cql? Does the NDepend calculate this number? Thanks! Alejandra
0
votes
1answer
210 views

NDepend CQL Query for missing IDisposable implementation

I realize that the query this question is looking for won't be enough to find every little problem with IDisposable implementations, but every early warning counts, so I'll take what I can get. I'd ...
0
votes
2answers
147 views

Finding all methods that handle form events using NDepend

I was wondering if someone would be able to help me write a CQL query for NDepend that will show me all the methods in my form class that handle the form events. So I would like to be able to find ...