tursodatabase / libsql-client-go

Go client API for libSQL
MIT License
180 stars 24 forks source link

Support bool fields on HTTP #3

Open haaawk opened 1 year ago

haaawk commented 1 year ago

Libsql does not have bool datatype but code in Golang can do something like this:

var ok bool
if err := rows.Scan(&ok); err != nil {
  return err
}

Currently such Scan will fail.

Everything does work on websockets though.

GV14982 commented 11 months ago

I am also having this issue...