This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.datastax.oss.driver.api.core.CqlSession; | |
import com.datastax.oss.driver.api.core.cql.*; | |
import java.nio.file.Paths; | |
public class AstraConnect { | |
public static void main(String[] args) { | |
// TO DO: Fill in your own host, port, and data center |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Cassandra; | |
using System.Linq; | |
using System; | |
namespace QuickStart | |
{ | |
class AstraConnect | |
{ | |
static void Main(string[] args) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const cassandra = require('cassandra-driver'); | |
const client = new cassandra.Client({ | |
cloud: { secureConnectBundle: 'path/to/secure-connect-DATABASE_NAME.zip' }, | |
credentials: { username: 'username', password: 'password' } | |
keyspace: 'demo' | |
}); | |
function createTable(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from cassandra.cluster import Cluster | |
from cassandra.auth import PlainTextAuthProvider | |
def set_user(session, lastname, age, city, email, firstname): | |
# TO DO: execute SimpleStatement that inserts one user into the table | |
session.execute("INSERT INTO users (lastname, age, city, email, firstname) VALUES (%s,%s,%s,%s,%s)", [lastname, age, city, email, firstname]) | |
def get_user(session, lastname): | |
# TO DO: execute SimpleStatement that retrieves one user from the table | |
# TO DO: print firstname and age of user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <cassandra.h> | |
struct Users_ { | |
const char* lastname; | |
cass_int32_t age; | |
const char* city; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <assert.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "cassandra.h" | |
struct Users_ { | |
const char* lastname; | |
cass_int32_t age; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const cassandra = require('cassandra-driver'); | |
// TO DO: Fill in your own host and data center | |
const client = new cassandra.Client({ | |
contactPoints: ['127.0.0.1'], | |
localDataCenter: 'datacenter1', | |
keyspace: 'demo' | |
}); | |
function insertUser(lastname, age, city, email, firstname) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from cassandra.cluster import Cluster | |
def create_connection(): | |
# TO DO: Fill in your own contact point | |
cluster = Cluster(['127.0.0.1']) | |
return cluster.connect('demo') | |
def set_user(session, lastname, age, city, email, firstname): | |
# TO DO: execute SimpleStatement that inserts one user into the table | |
session.execute("INSERT INTO users (lastname, age, city, email, firstname) VALUES (%s,%s,%s,%s,%s)", [lastname, age, city, email, firstname]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Cassandra; | |
using System.Linq; | |
using System; | |
namespace QuickStart | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.datastax.quickstart; | |
import com.datastax.oss.driver.api.core.CqlSession; | |
import com.datastax.oss.driver.api.core.cql.*; | |
import java.net.InetSocketAddress; | |
public class GettingStarted { | |
public static void main(String[] args) { |
NewerOlder