Search Results
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-troubleshooting.html
3.14.9: Why does Connector/J not reconnect to MySQL and re-issue the statement after a communication failure instead of throwing an Exception, even though I use the autoReconnect connection string option? There are several reasons for this. This ...
https://dev.mysql.com/doc/connectors/en/connector-net-connections-pooling.html
You can turn it off or adjust its performance characteristics using the connection string options Pooling, Connection Reset, Connection Lifetime, Cache Server Properties, Max Pool Size and Min Pool Size. See Section 4.4.1, “Creating a ... The ...
https://dev.mysql.com/doc/connectors/en/connector-net-entityframework-core-charset.html
[MySqlCharset("utf8")] public class ComplexKey { [MySqlCharset("latin1") public string Key1 { get; set; } [MySqlCharset("latin1")] public string Key2 { get; set; } [MySqlCollation("latin1_spanish_ci")] public string CollationColumn { get; set; } } ... This section describes how to change the character set, collation, or both at the entity and entity-property level in an Entity Framework (EF) Core ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-document-store.html
string schemaName = "world_x"; // Define the connection string string connectionURI = "mysqlx://test:test@localhost:33060"; Session session = MySQLX.GetSession(connectionURI); // Get the schema object Schema schema = session.GetSchema(schemaName); ... This tutorial provides instructions to get you started using MySQL as a document store with MySQL ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-sql-command.html
When a connection has been established with the MySQL database, the next step enables you to perform database operations. This task can be achieved through the use of the MySqlCommand object. After it has been created, there are three main methods ...
https://dev.mysql.com/doc/connector-net/en/connector-net-connections-pooling.html
You can turn it off or adjust its performance characteristics using the connection string options Pooling, Connection Reset, Connection Lifetime, Cache Server Properties, Max Pool Size and Min Pool Size. See Section 4.1, “Creating a Connector/NET ... The MySQL Connector/NET supports connection pooling for better performance and scalability with database-intensive ...
https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework-core-charset.html
[MySqlCharset("utf8")] public class ComplexKey { [MySqlCharset("latin1") public string Key1 { get; set; } [MySqlCharset("latin1")] public string Key2 { get; set; } [MySqlCollation("latin1_spanish_ci")] public string CollationColumn { get; set; } } ... This section describes how to change the character set, collation, or both at the entity and entity-property level in an Entity Framework (EF) Core ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-tracing-mysql-custom-listeners.html
This has the prototype: public void TraceEvent( TraceEventType eventType, int id, string format, params Object[] args ) This trace source method will process the list of attached listeners and call the listener's TraceListener.TraceEvent method. The ... To build custom listeners that work with the MySQL Connector/NET Trace Source, it is necessary to understand the key methods used, and the event data formats ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-document-store.html
string schemaName = "world_x"; // Define the connection string string connectionURI = "mysqlx://test:test@localhost:33060"; Session session = MySQLX.GetSession(connectionURI); // Get the schema object Schema schema = session.GetSchema(schemaName); ... This tutorial provides instructions to get you started using MySQL as a document store with MySQL ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-sql-command.html
When a connection has been established with the MySQL database, the next step enables you to perform database operations. This task can be achieved through the use of the MySqlCommand object. After it has been created, there are three main methods ...