Created
April 1, 2013 02:39
-
-
Save shehaaz/5282948 to your computer and use it in GitHub Desktop.
Cassandra Runner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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