Search Results
https://dev.mysql.com/doc/connectors/en/connector-net-connections.html
All interaction between a .NET application and the MySQL server is routed through a MySqlConnection object when using the classic MySQL protocol. Before your application can interact with the server, it must instantiate, configure, and open a ...
https://dev.mysql.com/doc/connectors/en/connector-net-entityframework-core.html
optionsBuilder.UseMySQL("server=localhost;database=library;user=user;password=password"); } Limitations The Connector/NET implementation of EF Core has the following limitations: Memory-Optimized Tables is not supported. MySQL Connector/NET ...
https://dev.mysql.com/doc/connectors/en/connector-net-introduction.html
Connector/NET includes full support for: Features provided by MySQL Server, up to and including the MySQL 9.3 release series. Protocol compression, which enables compressing the data stream between the client and server. MySQL Connector/NET enables ...
https://dev.mysql.com/doc/connectors/en/connector-net-ref-efcore.html
MySqlIndexBuilderExtensions Inheritance MySQLIndexExtensions Extension methods for IIndex for SQL Server-specific metadata. Namespaces in this section: MySql.EntityFrameworkCore.DataAnnotations Namespace MySQL.EntityFrameworkCore.Diagnostics ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-ssl-pem.html
For this example, use the test client certificates from the MySQL server repository (server-repository-root/mysql-test/std_data). The direct use of PEM format certificates was introduced to simplify certificate management in multiplatform ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn-macos.html
For example: $> myodbc-installer -a -s -t"DSN=mydb;DRIVER=MySQL ODBC 9.3 Driver;SERVER=mysql;USER=username;PASSWORD=pass" To use ODBC Administrator: Warning For correct operation of ODBC Administrator, ensure that the /Library/ODBC/odbc.ini file ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn-unix.html
On Unix, you configure DSN entries directly in the odbc.ini file. For example, if your odbc.ini file is located in /usr/local/etc, set the environment variables like this: export ODBCINI=/usr/local/etc/odbc.ini export ODBCSYSINI=/usr/local/etc .
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-source-unix.html
These should be in place if you have installed the MySQL server on the same machine. You need the following tools to build MySQL from source on Unix: A working ANSI C++ compiler. GCC 4.2.1 or later, Sun Studio 12.1 or later, and many current ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysql-connector-connect.html
This method sets up a connection, establishing a session with the MySQL server. A connection with the MySQL server can be established using either the mysql.connector.connect() method or the mysql.connector.MySQLConnection() class: cnx = ...If no ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-client-flags.html
Syntax: >>> cnx.client_flags=flags >>> cnx.clieng_flags This property sets the client flags to use when connecting to the MySQL server, and returns the set value as an integer. For example, to unset LONG_FLAG and set the FOUND_ROWS flags: >>> from ...The flags value can be either an integer or a sequence of valid client flag values (see Section 6.9.7, “constants.ClientFlag ...