Search Results
                    
                    
            https://dev.mysql.com/doc/connectors/en/connector-net-programming-trace-source.html
                                4.5.12.2.2 Building Custom Listeners 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 used.  The .NET tracing architecture consists of four ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-net-ref-entityframework.html
                                MySqlModelCacheKey Represents a key value that uniquely identifies an Entity Framework model that has been loaded into memory.  Classes Class Description BackoffAlgorithm Represents the base class for backoff algorithms. BackoffAlgorithmErr1040 ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-net-simple-membership-tutorial.html
                                <membership defaultProvider="MySqlSimpleMembershipProvider"> <providers> <clear/> <add name="MySqlSimpleMembershipProvider" type="MySql.Web.Security.MySqlSimpleMembershipProvider,MySql.Web, ... This section documents the ability to use a simple ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-data-adapter.html
                                The application was built using the Microsoft Visual Studio to place and create the user interface controls, but the main code that uses the key classes described previously is shown in the next code example, and is portable.  Previously, when using ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-ssl-pfx.html
                                openssl pkcs12 -export -in client-cert.pem -inkey client-key.pem -certfile cacert.pem -out client.pfx When asked for an export password, enter the password “pass”. Instead, Windows includes a certificate store that provides platform-dependent ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-odbc-introduction.html
                                 The MySQL Connector/ODBC is the name for the family of MySQL ODBC drivers (previously called MyODBC drivers) that provide access to a MySQL database using the industry standard Open Database Connectivity (ODBC) API. This reference covers ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-custom-error-exception.html
                                The error argument can be a dictionary, in which case the key is the server error number, and value the class of the exception to be raised.  Syntax: errors.custom_error_exception(error=None, exception=None) This method defines custom exceptions for ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-column-names.html
                                 Syntax: sequence = cursor.column_names This read-only property returns the column names of a result set as sequence of Unicode strings. 
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursordict.html
                                The keys for each dictionary object are the column names of the MySQL result. Example: cnx = mysql.connector.connect(database='world') cursor = cnx.cursor(dictionary=True) cursor.execute("SELECT * FROM country WHERE Continent = 'Europe'") ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework-core-example.html
                                 The Code First approach enables you to define an entity model in code, create a database from the model, and then add data to the database. MySQL Connector/NET is compatible with multiple versions of Entity Framework Core. For specific ...