Search Results
                    
                    
            https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-microsoft.html
                                 The majority of Microsoft applications have been tested with Connector/ODBC, including Microsoft Office, Microsoft Access and the various programming languages supported within ASP and Microsoft Visual Studio. 5.8.2.1.1 Microsoft Access To improve ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-integrityerror.html
                                 This exception is raised when the relational integrity of the data is affected. For example, a duplicate key was inserted or a foreign key constraint would fail. The following example shows a duplicate key error raised as IntegrityError: ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-executemany.html
                                 Syntax: cursor.executemany(operation, seq_of_params) This method prepares a database operation (query or command) and executes it against all parameter sequences or mappings found in the sequence seq_of_params. Note In Python, a tuple containing a ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-example-cursor-transaction.html
                                 Inserting or updating data is also done using the handler structure known as a cursor. When you use a transactional storage engine such as InnoDB (the default in MySQL 5.5 and higher), you must commit the data after a sequence of INSERT, DELETE, ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-installation-unix.html
                                 There is no installer available for installing the MySQL Connector/NET component on your Unix installation. Before installing, ensure that you have a working Mono project installation. To test whether your system has Mono installed, enter: $> mono ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-programming-getschema.html
                                 The GetSchema() method of the connection object can be used to retrieve schema information about the database currently connected to. The schema information is returned in the form of a DataTable. Different forms of the GetSchema() method can be ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-document-store.html
                                 This tutorial provides instructions to get you started using MySQL as a document store with MySQL Connector/NET. Minimum Requirements MySQL Server 8.0.11 with X Protocol enabled Connector/NET 8.0.11 Visual Studio 2013/2015/2017 world_x database ...
                                            
                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 ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-ssl-pfx.html
                                Instead, Windows includes a certificate store that provides platform-dependent certificates in PFX format. For the purposes of this example, use test client certificates from the MySQL server repository (./mysql-test/std_data). To complete the steps ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-stored-procedures.html
                                Putting database-intensive operations into stored procedures lets you define an API for your database application. You can reuse this API across multiple applications and multiple programming languages. This technique avoids duplicating database ...