GoMySQL icon indicating copy to clipboard operation
GoMySQL copied to clipboard

The most complete and stable MySQL client library written completely in Go. For discussion, ideas, suggestions, feature requests etc, please visit the GoMySQL Google Group (link below). For any issues...

Results 10 GoMySQL issues
Sort by recently updated
recently updated
newest added

Few little changes...

I tested it both in my programs and using make test. Everything seems OK. I had to make a lot of small changes related mainly to the evolutions of Error...

I ran go fix; added an Error() method to the errors, and re-ran go test. Should work for go1.

Is it possible to make i compatible with latest go-tools? ``` bash $go install github.com/Philio/GoMySQL # github.com/Philio/GoMySQL /usr/local/go/src/pkg/github.com/Philio/GoMySQL/handler.go:281: err is shadowed during return /usr/local/go/src/pkg/github.com/Philio/GoMySQL/handler.go:289: err is shadowed during return /usr/local/go/src/pkg/github.com/Philio/GoMySQL/handler.go:311:...

I installed the GoMySQL using goinstall ``` goinstall github.com/Philio/GoMySQL ``` And cloned a version from github, the diff on statement.go shows on ``` 612c612 < err = s.c.command(COM_STMT_RESET, s.statementId) ---...

Hi i am trying to use your API but it seems DATE fields are not supported. To fix this problem, i added in function : func handleRow(p *packetRowData, c *Client,...

create table gotest (x varchar(255)); insert into gotest values (''); Selecting from this in GoMySQL gets you a nil value instead of an empty string.

I'm having a problem wherein I have an integer field defined but set to NULL, I get this error when calling Statement.Fetch() on the prepared statement: ``` #2000 Unknown MySQL...

If feild defined in database is DATETIME, the result should be string, but []int returned.

Everytime I update my Go installation, I am unable to build my programs which rely on GoMySQL, e.g. $ make 6g -o _go_.6 warden.go scrape.go warden.go:22: can't find import: mysql...

Feature Request