Recherche…


Bonjour le monde

Pour accéder à Cassandra, vous pouvez utiliser le module Cassandra cassandra-driver de DataStax. Il prend en charge toutes les fonctionnalités et peut être facilement configuré.

const cassandra = require("cassandra-driver");
const clientOptions = {
    contactPoints: ["host1", "host2"],
    keyspace: "test"
};

const client = new cassandra.Client(clientOptions);

const query = "SELECT hello FROM world WHERE name = ?";
client.execute(query, ["John"], (err, results) => {
    if (err) {
      return console.error(err);
    }

    console.log(results.rows);
});


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow