We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty result.
CREATE DATABASE test; CREATE TABLE test.t( t_int_unsigned INT UNSIGNED ); insert into test.t values (4294967295);
Query with go-sql-driver master. Here we use commit 0004702
db, err := sql.Open("mysql", "root@tcp(127.0.0.1:3306)/test") if err != nil { println(err) return } defer db.Close() rows, err := db.Query("select * from test.t") if err != nil { println(err) return } if !rows.Next() { println("no rows") return } var v int64 err = rows.Scan(&v) if err != nil { println(err) } println(v)
This code output no rows
no rows
Driver version (or git SHA): 0004702
Go version: run go version in your console
go version
Server version: E.g. MySQL 5.6, MariaDB 10.0.20
Server OS: E.g. Debian 8.1 (Jessie), Windows 10
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Issue description
Empty result.
Example code
Query with go-sql-driver master. Here we use commit 0004702
This code output
no rows
Configuration
Driver version (or git SHA): 0004702
Go version: run
go version
in your consoleServer version: E.g. MySQL 5.6, MariaDB 10.0.20
Server OS: E.g. Debian 8.1 (Jessie), Windows 10
The text was updated successfully, but these errors were encountered: