Am I posting this to the wrong place?
--
View this message in context:
http://cassandra-user-incubator-apache-org.3065146.n2.nabble.com/Proper-Use-of-PreparedStatements-in-DataStax-driver-tp7590793p7590845.html
Sent from the cassandra-u...@incubator.apache.org mailing list archive at
Nabble.co
Hello,
I'm trying to determine the proper way to use PreparedStatements using the
datastax CQL Java driver;
so the API is
Session session = ...
PreparedStatement ps = session.prepare("INSERT INTO (column,
...) VALUES (?, ...)")
BoundStatement bs = new BoundStatement(ps);
//bind variables
sess