Anton Zhiyanov

Results 57 comments of Anton Zhiyanov

I've thought about it but haven't found a real use case. Would you actually use this feature? Can you describe your use case?

But would you really use it that way?

I would like to support Homebrew, but don't have any specific plans yet.

Not looking for a workaround; I reported the issue so that the driver behaves as expected.

The libSQL driver returns an error. It's described in the issue. The error is not expected in this situation, and other Go SQLite drivers handle the described situation just fine.

I'd say the expected behavior is to return a non-nil `sql.Result` and _not_ return an error (like other drivers do): ```go package main import ( "database/sql" "fmt" "log" _ "github.com/mattn/go-sqlite3"...