Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-trace-source.html
Trace switches have associated with them a trace level enumeration, these are Off, Error, Warning, Info, and Verbose. The .NET tracing architecture consists of four main parts: Source - This is the originator of the trace information. Switch - This ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming.html
MySqlException: The exception that is thrown when MySQL returns an error. MySQL Connector/NET comprises several classes that are used to connect to the database, execute queries and statements, and manage query results. The following are the major ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-asp-provider-profile.html
Save all files and build the solution to check that no errors have been introduced. This tutorial shows you how to use the MySQL Profile Provider to store user profile information in a MySQL database. The tutorial uses MySQL Connector/NET 6.9.9, ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-asp-roles.html
At this point build the solution to ensure no errors are present. Many websites feature the facility for the user to create a user account. They can then log into the website and enjoy a personalized experience. This requires that the developer ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-entity-framework-databinding-linq-entities.html
Figure 6.18 Placed GridView Control At this point it is recommended that you save your solution, and build the solution to ensure that there are no errors. In this tutorial you create an ASP.NET web page that binds LINQ queries to entities using ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-parameters.html
The user could enter a string that generates a runtime error, or in the worst case actually harms the system. This part of the tutorial shows you how to use parameters in your MySQL Connector/NET application. Although it is possible to build SQL ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-ssl-pem.html
using (MySqlConnection connection = new MySqlConnection( "database=test;user=sslclient;" + "SslMode=VerifyFull" + "SslCa=ca.pem;" + "SslCert=client-cert.pem;" + "SslKey=client-key.pem;")) { connection.Open(); } Errors found when processing the PEM ... The direct use of PEM format certificates was introduced to simplify certificate management in multiplatform environments that include similar MySQL ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-architecture.html
The Connector/ODBC architecture is based on five components, as shown in the following diagram: Figure 3.1 Connector/ODBC Architecture Components Application: The Application uses the ODBC API to access the data from the MySQL server. The ...
https://dev.mysql.com/doc/connector-odbc/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/connector-odbc/en/connector-odbc-configuration-dsn-windows-problems.html
While configuring a Connector/ODBC DSN, a Could Not Load Translator or Setup Library error occurs For more information, refer to MS KnowledgeBase Article(Q260558). Also, make sure you have the latest valid ctl3d32.dll in your system directory. The ...