Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created a KEYSPACE using cassandra cql3 and am trying to connect to the same using Cassandra jdbc driver. When I try to do so I get the error:

java.sql.SQLSyntaxErrorException: InvalidRequestException(why:Keyspace MYKEYSPACE does not exist) at org.apache.cassandra.cql.jdbc.CassandraConnection.(CassandraConnection.java:139) at org.apache.cassandra.cql.jdbc.CassandraDriver.connect(CassandraDriver.java:92) at java.sql.DriverManager.getConnection(DriverManager.java:582) at java.sql.DriverManager.getConnection(DriverManager.java:207)

The connection string is: jdbc:cassandra://localhost:9160/MYKEYSPACE ?version=3.0.0

I can connect and check that the keyspace exists from command line. (cqlsh -3 localhost 9160); use KEYSPACE MYKEYSPACE

Any ideas?

share|improve this question

1 Answer

up vote 1 down vote accepted

My guess: JDBC is being case-sensitive. Try lowercase.

share|improve this answer
It should not make a difference. The Keyspace is defined upper case. You were right.. That sounds like a bug to me:-( – Olivier Twist Jul 30 '12 at 18:40
It's not; CQL 3 is defined as downcasing identifiers by default (similar to how several RMDBS systems try to avoid case mismatches). You can double-quote words to avoid that. – the paul Jul 30 '12 at 22:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.