for (char keyName = 'A'; keyName <= 'Z'; keyName++) {
String character = Character.toString(keyName);
ColumnListMutation<String> colMutation = m.withRow(CF_ACCOUNTS, character);
colMutation.putColumn("user", "user" + character).putColumn("pswd", "pswd" + character);
m.execute();
m.discardMutations();
}
}
public static void deleteRowsForAccountsTable(Keyspace keyspace) throws Exception {