Search Results
                    
                    
            https://dev.mysql.com/doc/connector-net/en/connector-net-medium-trust-nongac.html
                                 When deploying a web application to a Shared Hosted environment, where this environment is configured to run all their .NET applications under a partial or medium trust level, you might not be able to install the MySQL Connector/NET library in the ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-ref-common-dnsclient.html
                                A four bit field that specifies kind of query in this message. This value is set by the originator of a query and copied into the response. 
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-errors.html
                                64-Bit Windows and ODBC Data Source Administrator I have installed Connector/ODBC on Windows XP x64 Edition or Windows Server 2003 R2 x64. There is a known issue with a specific version of the msjet40.dll that exhibits this issue.  The following ...
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation-binary-macos.html
                                Extract the archive: $> tar xvzf mysql-connector-odbc-x.y.z-macos10.z-x86-(32|64)bit.tar.gz The directory created contains two subdirectories, lib and bin.  macOS is based on the FreeBSD operating system, and you can normally use the MySQL network ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-errorcode.html
                                Using error codes instead of error numbers could make reading the source code a bit easier.  This module contains both MySQL server and client error codes defined as module attributes with the error number as value. >>> from mysql.connector import ...
                                            
                https://dev.mysql.com/doc/internals/en/binary-protocol-resultset-row.html
                                 A Binary Protocol Resultset Row is made up of the NULL bitmap containing as many bits as we have columns in the resultset + 2 and the values for columns that are not NULL in the Binary Protocol Value format. ProtocolBinary::ResultsetRow: row of a ...
                                            
                https://dev.mysql.com/doc/internals/en/connection-phase-packets.html
                                 Protocol::Handshake Initial Handshake Packet When the client connects to the server the server sends a handshake packet to the client. Depending on the server version and configuration options different variants of the initial packet are sent. To ...
                                            
                https://dev.mysql.com/doc/internals/en/creating-tables.html
                                 Once a handler is instanced, the first operation that will likely be required is the creation of a table. Your storage engine must implement the [custom-engine.html#custom-engine-api-reference-create create()] virtual method: virtual int ...
                                            
                https://dev.mysql.com/doc/internals/en/delete-row.html
                                If you keep a pointer to the last row or can access a primary key it will make doing the deletion quite a bit easier. Synopsis virtual int delete_row ( buf); const byte * buf ; Description This is the delete_row method. buf will contain a copy of ...
                                            
                https://dev.mysql.com/doc/internals/en/guided-tour-majordir-vio.html
                                The idea is that in the main modules one won't have to write separate bits of code for each protocol.  The final major directory that we'll highlight is labelled vio, for "virtual I/O". The vio routines are wrappers for the various network I/O calls ...