2012-10-10 31 views

回答

0

是它,

這裏你可以看到一個例子https://github.com/Netflix/astyanax/wiki/Cql-and-cql3

final String INSERT_STATEMENT = "INSERT INTO employees (empID, deptID, first_name, last_name) VALUES (?, ?, ?, ?);"; 

result = keyspace 
    .prepareQuery(CQL3_CF) 
     .withCql(INSERT_STATEMENT) 
    .asPreparedStatement() 
     .withIntegerValue(222) 
     .withIntegerValue(333) 
     .withStringValue("Eric") 
     .withStringValue("Cartman") 
    .execute();