public Message.Response execute()
{
try
{
ServerConnection c = (ServerConnection)connection;
CQLStatement statement = c.clientState().getCQL3Prepared().get(statementId);
if (statement == null)
throw new InvalidRequestException(String.format("Prepared query with ID %d not found", statementId));
return QueryProcessor.processPrepared(statement, c.clientState(), values);