Search Results
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-programming-blob-reading.html
After a file is loaded into the file table, we can use the MySqlDataReader class to retrieve it. The GetBytes method of the MySqlDataReader is used to load the BLOB into a byte array, which is then written to disk using a FileStream object. The ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-blob-writing.html
To write a file to a database, we need to convert the file to a byte array, then use the byte array as a parameter to an INSERT query. After assigning the byte array as a parameter of the MySqlCommand object, the ExecuteNonQuery method is called ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-crystal-source.html
When creating a report in Crystal Reports there are two options for accessing the MySQL data while designing your report. The first option is to use Connector/ODBC as an ADO data source when designing your report. You will be able to browse your ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-datetime-restricting.html
This can be done on either the client or the server side. For information on using the traditional SQL mode, see Server SQL Modes. The best solution to the date problem is to restrict users from entering invalid dates. Restricting invalid dates on ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-prepared.html
Another advantage of prepared statements is that, with server-side prepared statements enabled, it uses a binary protocol that makes data transfer between client and server more efficient. Prepared statements can provide significant performance ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-telemetry.html
If the server does not support query attributes or has them disabled, then Connector/NET skips the entire context propagation flow. OpenTelementry (OTel) standardizes instrumentation, generation, collecting and exporting telemetry data to be ...
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 ...