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
Test whether DbDataReader.GetX(n) performs an implicit conversion if GetFieldType(n) != typeof(X).
DbDataReader.GetX(n)
GetFieldType(n) != typeof(X)
For example, calling GetString on a FLOAT column, or GetInt16 on a BIGINT column.
GetString
FLOAT
GetInt16
BIGINT
This will help inform decisions such as mysql-net/MySqlConnector#408.
The text was updated successfully, but these errors were encountered:
Added numeric/string conversions in 3d8dbc6.
Sorry, something went wrong.
No branches or pull requests
Test whether
DbDataReader.GetX(n)
performs an implicit conversion ifGetFieldType(n) != typeof(X)
.For example, calling
GetString
on aFLOAT
column, orGetInt16
on aBIGINT
column.This will help inform decisions such as mysql-net/MySqlConnector#408.
The text was updated successfully, but these errors were encountered: