Skip to content

Instantly share code, notes, and snippets.

@shehaaz
Created April 1, 2013 02:39
Show Gist options
  • Save shehaaz/5282948 to your computer and use it in GitHub Desktop.
Save shehaaz/5282948 to your computer and use it in GitHub Desktop.
Cassandra Runner
public class Runner {
/**
* @param args
*/
public static void main(String[] args) {
CassandraDAO c = new CassandraDAO();
ResultSet result = c.findByCQL("Select * from user_profiles");
System.out.println(result.all());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment