Giter Club home page Giter Club logo

surrealdb-rpc-async's Introduction

Unofficial SurrealDB RPC Client

cargo add --git "https://github.com/LLBlumire/surrealdb-rpc-async.git"
let mut connect = Client::builder("ws://127.0.0.1:8000/rpc")
    .with_err_handler(|e| {
        println!("{e}: {e:?}");
        ClientAction::IgnoreError
    })
    .build()
    .await?;

let res = connect
    .ping()?
    .send()
    .await?
    .response()
    .await?;
assert_eq!(res, Value::Bool(true));

let res = connect
    .sign_in("root".into(), "root".into())?
    .send()
    .await?
    .response()
    .await?;
assert_eq!(res, Value::String(String::new()));

let res = connect
    .use_ns_db("my_db".into(), "my_ns".into()?
    .send()
    .await?
    .response()
    .await?;
assert_eq!(res, Value::Null);

let res = connect
    .query("\
        SELECT bar FROM foo; \
        BEGIN TRANSACTION; \
        CREATE foo SET bar = 'bat'; \
        CANCEL TRANSACTION; \
        SELECT bar FROM foo \
    ".to_string(), BTreeMap::new())?
    .send()
    .await?
    .response()
    .await?;
assert_eq!(res[0]["result"], Value::Array(vec![]));
assert_eq!(res[2]["result"], Value::Array(vec![]));

let res = connect
    .query("\
        SELECT bar FROM foo; \
        BEGIN TRANSACTION; \
        CREATE foo SET bar = 'bat'; \
        COMMIT TRANSACTION; \
        SELECT bar FROM foo \
    ".to_string(), BTreeMap::new())?
    .send()
    .await?
    .response()
    .await?;
assert_eq!(res[0]["result"], Value::Array(vec![]));
assert_eq!(res[2]["result"][0]["bar"], Value::String("bat".into()));

surrealdb-rpc-async's People

Contributors

gomolsoft avatar llblumire avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.