Libsql-rb
A simple wrapper around the Libsql HTTP protocol. Does not support the Libsql protocol,
only the HTTP method based on the documentation
Installation
$ gem install libsql-rb
Usage
Example
client = Libsql::Client.new host: "http://localhost:8080"
client.execute "create table users(name, email, password)"
client.execute "insert into users(name, email, password) values(?, ?, ?)", ["User 1", "user1@email..com", "1111111"]
client.execute "insert into users(name, email, password) values(:name, :email, :password)", ["User 1", "user1@email..com", "1111111"]
result = client.execute "select * from users"
result.rows