Search Results
                    
                    
            https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-borland.html
                                5.8.2.2.2 Using Connector/ODBC with Delphi Also, here is some potentially useful Delphi code that sets up both an ODBC entry and a BDE entry for Connector/ODBC.  With all Borland applications where the Borland Database Engine (BDE) is used, follow ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-microsoft.html
                                The result is that Excel incorrectly identifies the content and this affects both the display format and the data when it is used within calculations.  The majority of Microsoft applications have been tested with Connector/ODBC, including Microsoft ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-api-errorcode.html
                                 This module contains both MySQL server and client error codes defined as module attributes with the error number as value. Using error codes instead of error numbers could make reading the source code a bit easier. >>> from mysql.connector import ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursorprepared.html
                                In both cases, the cursor() method of the connection object returns a MySQLCursorPrepared object: The simpler syntax uses a prepared=True argument to the cursor() method. In MySQL, there are two ways to execute a prepared statement: Use the PREPARE ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-example-connecting.html
                                 The connect() constructor creates a connection to the MySQL server and returns a MySQLConnection object. The following example shows how to connect to the MySQL server: import mysql.connector cnx = mysql.connector.connect(user='scott', ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-example-cursor-transaction.html
                                Both INSERT statements are stored in the variables called add_employee and add_salary.  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 ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-logging.html
                                 By default, logging functionality follows the default Python logging behavior. If logging functionality is not configured, only events with a severity level of WARNING and greater are printed to sys.stderr. For related information, see Python's ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-obtaining.html
                                Prior to Connector/Python 8.3.0, mysql-connector-python installed interfaces to both the X and classic protocols.  Using pip is the preferred method to obtain, install, and upgrade Connector/Python. Note The mysql-connector-python package installs ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-connections-errors.html
                                 Because connecting to an external server is unpredictable, it is important to add error handling to your .NET application. When there is an error connecting, the MySqlConnection class will return a MySqlException object. This object has two ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-connections-pooling.html
                                The pool cleanup frees resources on both client and server side.  The MySQL Connector/NET supports connection pooling for better performance and scalability with database-intensive applications. You can turn it off or adjust its performance ...