-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
uint64 issues #60
Comments
It is because current version of this library does not use NamedValueChecker implemented on connection (and only use statement's one). #61 is fix for that. |
Hi @ypresto thanks for investigating it. I'd suggest @Drabuna to update Go MySQL driver to the newer version if that's possible and see if that's solve the problem. Because sqldb-logger log interaction with *sql.DB as-is. |
To my understanding, this is sqldb-logger's side issue: the cause of this issue is that sqldb-logger's logic is different from how golang sql package works. (mentioned in #61) |
Hi, I'm trying to use this together with sqlx and have discovered a weird issue - when trying to insert uint64 value I get a:
error: sql: converting argument $1 type: driver ColumnConverter error converted uint64 to unsupported type uint64
The moment I remove sqldb-logger (by setting
c.loggingEnabled = false
), the issue goes away and everything works fine.Here some details on how I init the connection:
And then later I would run something like:
And the
CreateAccount
will return an error specified above.Thoughts, ideas?
The text was updated successfully, but these errors were encountered: