Ryan Fowler
Ryan Fowler
@tssajo strange, I'm able to build bimg (`v1.0.18`) in Go 1.10 without any issues.
@tssajo I'm using macOS 10.13.6. The code snippet below compiles for me locally, as well as in a `ubuntu:18.04` Docker container with Go 1.10 & 1.11. ```go package main import...
Thanks for the feedback; I see your point here. The transactionClosure that you pass to SD.transaction returns true (to commit the transaction) or false (to rollback the transaction). Instead of...
@eriktelepovsky Ok, I understand what you mean now ... I think the most appropriate way to deal with this is to have better error handling. I'm hoping to have an...
@hadasaOrit For your first question, all queries will return an Array of SDRow objects. If you'd only like one row, you can just use the first item of the returned...
I'm looking into the easiest way to implement this without generating a bunch of errors. I have to do some research on concurrency in SQLite ...
This seems unusual - I don't experience this slowness in my testing, Would you be able to provide the data you're trying to insert? If you have some kind of...
go env: ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/ryanfowler/go" GORACE="" GOROOT="/usr/local/Cellar/go/1.7/libexec" GOTOOLDIR="/usr/local/Cellar/go/1.7/libexec/pkg/tool/darwin_amd64" CC="clang" GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/k6/mfkbnsjj1y1cqm83ypfncbtr0000gp/T/go-build615749329=/tmp/go-build -gno-record-gcc-switches -fno-common" CXX="clang++" CGO_ENABLED="1" ```