Search Results
https://dev.mysql.com/doc/connectors/en/connector-j-server-authentication.html
Also, be mindful that the password will have to be written as plain text in your Connector/J configuration file or application source code. Server authentication via server certificate verification is enabled when the Connector/J connection ...
https://dev.mysql.com/doc/connectors/en/connector-net-entityframework-core-example.html
It consists of two entities related to a book library that are configured in the LibraryContext class (or database context). The Code First approach enables you to define an entity model in code, create a database from the model, and then add data ...
https://dev.mysql.com/doc/connectors/en/connector-net-entityframework-core.html
In the class that derives from the DbContext class, override the OnConfiguring method to set the MySQL data provider with UseMySQL. protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { #warning To protect potentially ...
https://dev.mysql.com/doc/connectors/en/connector-net-installation-source.html
Right-click the node and select Build from the context menu to build the solution. To determine which frameworks are supported, use a text editor to open the related project file (for example, MySql.Data.csproj in the src subdirectory) and search ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-blob.html
MySQL supports four different BLOB data types: TINYBLOB, BLOB, MEDIUMBLOB, and LONGBLOB, all described in The BLOB and TEXT Types and Data Type Storage Requirements. One common use for MySQL is the storage of binary data in BLOB columns. Data ...
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-getschema.html
The GetSchema() method of the connection object can be used to retrieve schema information about the database currently connected to. The schema information is returned in the form of a DataTable. Different forms of the GetSchema() method can be ...
https://dev.mysql.com/doc/connectors/en/connector-net-ref-efcore.html
Enumerations Enumeration Description MySQLMatchSearchMode Performs a search against a text collection. MySql.EntityFrameworkCore.Infrastructure Namespace Classes Class Description MySQLDbContextOptionsBuilder Represents the ... Namespaces in this ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-parameters.html
For example, imagine the following query was constructed from user input: string sql = "SELECT Name, HeadOfState FROM Country WHERE Continent = "+user_continent; If the string user_continent came from a Text Box control, there would potentially be ... This part of the tutorial shows you how to use parameters in your MySQL Connector/NET ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-connection-parameters.html
ENABLE_CLEARTEXT_PLUGIN Enable Cleartext Authentication 0 Set to 1 to enable cleartext authentication. However, the numerical option value in the connection string can only enable, but not disable parameters enabled on the DSN, which can only be ...