Code Monkey home page Code Monkey logo

Comments (1)

freeekanayaka avatar freeekanayaka commented on June 4, 2024

Yes, libdqlite expect standard NULL-terminated C strings.

I didn't try with rust, but I can't quite reproduce your issue with plain C.

I wrote a main.c server with:

#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <dqlite.h>

int main() {
  const char *address = "127.0.0.1:5005";
  const char *dir = "/tmp/dqlite-rs";
  dqlite_node *node;
  int rv;
  mkdir(dir, 0755);
  rv = dqlite_node_create(1, address, dir, &node);
  if (rv != 0) {
    printf("dqlite_node_create: %d\n", rv);
  }
  rv = dqlite_node_set_bind_address(node, address);
  if (rv != 0) {
    printf("dqlite_bind_address: %d\n", rv);
  }
  rv = dqlite_node_start(node);
  if (rv != 0) {
    printf("dqlite_node_start: %d\n", rv);
  }
  pause();
}

which I compiled and started with:

gcc main.c -o main -ldqlite && ./main

That starts fine. I then I wrote a minimal Go main.go client with:

package main

import (
	"context"
	"database/sql"
	"log"

	"github.com/canonical/go-dqlite/client"
	"github.com/canonical/go-dqlite/driver"
)

func main() {
	store := client.NewInmemNodeStore()
	store.Set(context.Background(), []client.NodeInfo{{Address: "127.0.0.1:5005"}})
	driver, err := driver.New(store)
	if err != nil {
		log.Fatal(err)
	}
	sql.Register("dqlite", driver)
	db, err := sql.Open("dqlite", "test.db")
	if err != nil {
		log.Fatal(err)
	}
	defer db.Close()
	_, err = db.Exec("CREATE TABLE IF NOT EXISTS foo(n INT)")
	if err != nil {
		log.Fatal(err)
	}
}

and ran it with:

go run -tags libsqlite3 main.go

The client ran fine without reporting errors.

from dqlite.

Related Issues (20)

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.