次は、準備済みの文を使用してイメージに関するデータを挿入するコード例です。
PreparedStatement statement = getSession().prepare(
"INSERT INTO pixelstore.image " +
"(image_name, " +
" upload_time, " +
" upload_by, " +
" file_type, " +
" file_size" +
") VALUES (?, ?, ?, ?, ?);");
// create the bound statement and initialise it with your prepared statement
BoundStatement boundStatement = new BoundStatement(statement);
session.execute(// this is where the query is executed
boundStatement.bind(// here you are binding the 'boundStatement'
"background", TimeUtil.getTimeUUID(), "lyubent", "png", "130527"));
ドライバーが何ができるかのデモと惑星のカサンドラ上の2件の最近のブログ記事がありました、彼らはコード例が含まれているので、それらをチェックアウト:
- Materialized View with Cassandra and DataStax Java Driver
- Small Java Application using DataStax Java Driver and Cassandra 1.2 working
ありがとうございました! –