How should I check for an empty resultset using datastax java cassandra driver?
Suppose I'm executing the following query "SELECT * FROM my_table WHERE mykey=something"
there is a great chance that the query will not be matched. The following code does not work:
if (rs != null)
rs.one().getString("some_column");