Search Results
https://dev.mysql.com/doc/connectors/en/connector-j-session-state-tracker.html
Connector/J can receive information on client session state changes tracked by the server if the tracking has been enabled on the server. The reception of the information is enabled by setting the Connector/J connection property trackSessionState ...However, the session state change information can also be received using a SessionStateChangesListener, which has to be registered with a ServerSessionStateController using the addSessionStateChangesListener() ...
https://dev.mysql.com/doc/connectors/en/connector-j-versions.html
Here is some compatibility information for Connector/J 8.0: JDBC versions: Connector/J 8.0 implements JDBC 4.2. While Connector/J 8.0 works with libraries of higher JDBC versions, it returns a SQLFeatureNotSupportedException for any calls of ...For ...
https://dev.mysql.com/doc/connectors/en/connector-j-YEAR.html
How a value in a MySQL YEAR column is handled is controlled by the connection property yearIsDateType: If yearIsDateType is true (the default), YEAR is mapped to the Java data type java.sql.Date. Connector/J follows the same rules that govern how ...If yearIsDateType is false, YEAR is mapped to the Java data type ...
https://dev.mysql.com/doc/connectors/en/connector-net-entityframework-core-example.html
MySQL Connector/NET is compatible with multiple versions of Entity Framework Core. For specific compatibility information, see Table 4.3, “Connector/NET Versions and Entity Framework Core Support”. dotnet CLI Enter the following command to add ... The Code First approach enables you to define an entity model in code, create a database from the model, and then add data to the ...
https://dev.mysql.com/doc/connectors/en/connector-net-medium-trust-nongac.html
When deploying a web application to a Shared Hosted environment, where this environment is configured to run all their .NET applications under a partial or medium trust level, you might not be able to install the MySQL Connector/NET library in the ...Instead, you put a reference to the library in the bin or lib folder inside the project or ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-bulk-loader.html
MySQL Connector/NET features a bulk loader class that wraps the MySQL statement LOAD DATA INFILE. This gives Connector/NET the ability to load a data file from a local or remote host to the server, or a stream to a database (from Connector/NET ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-datetime-invalid.html
The default behavior of Connector/NET is to return a .NET DateTime object for valid date values, and return an error for invalid dates. This default can be modified to cause Connector/NET to return MySqlDateTime objects for invalid dates. To ...
https://dev.mysql.com/doc/connectors/en/connector-net-ref-authentication.html
MySqlClearPasswordPlugin Allows connections to a user account set with the mysql_clear_password authentication plugin. Classes Class Description MySqlAuthenticationPlugin Abstract class used to define an authentication plugin. MySqlPemReader ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-asp-provider-profile.html
The tutorial uses MySQL Connector/NET 6.9.9, MySQL Server 5.7.21 and Microsoft Visual Studio 2017 Professional Edition. Click Edit and then configure a connection string for the database that will be used to store user profile information. In this ... This tutorial shows you how to use the MySQL Profile Provider to store user profile information in a MySQL ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-parameters.html
This part of the tutorial shows you how to use parameters in your MySQL Connector/NET application. Although it is possible to build SQL query strings directly from user input, this is not advisable as it does not prevent erroneous or malicious ...