Search Results
                    
                    
            https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-callproc.html
                                 Syntax: result_args = cursor.callproc(proc_name, args=()) This method calls the stored procedure named by the proc_name argument. The args sequence of parameters must contain one entry for each argument that the procedure expects. Result sets ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-mysqlscript.html
                                 This tutorial teaches you how to use the MySqlScript class. Depending on the circumstances, this can be more convenient than using the MySqlCommand approach. Further details of the MySqlScript class can be found in the reference documentation ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-callproc.html
                                 Syntax: result_args = cursor.callproc(proc_name, args=()) This method calls the stored procedure named by the proc_name argument. The args sequence of parameters must contain one entry for each argument that the procedure expects. Result sets ...
                                            
                https://dev.mysql.com/doc/internals/en/packet-EOF_Packet.html
                                 If CLIENT_PROTOCOL_41 is enabled, the EOF packet contains a warning count and status flags. Note In the MySQL client/server protocol, EOF and OK packets serve the same purpose, to mark the end of a query execution result. Due to changes in MySQL ...
                                            
                https://dev.mysql.com/doc/internals/en/rnd-next.html
                                 Purpose Reads the next row from a table and returns it to the server. Synopsis virtual int rnd_next ( buf); byte * buf ; Description This is the rnd_next method. The Field structure for the table is the key to getting data into buf in a manner that ...
                                            
                https://dev.mysql.com/doc/internals/en/support-for-savepoints.html
                                 First, the implementor should know how many bytes are required to store savepoint information. This should be a fixed size, preferably not large as the MySQL server will allocate space to store the savepoint for all storage engines with each named ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/mgm-functions-single-user-mode.html
                                 The MGM API makes it possible for the programmer to put the cluster into single-user mode—and to return it to normal mode again—from within an application. This section covers the functions that are used for these operations. 
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-examples-basic-delete.html
                                 This example shows deleting a row from a table already created and populated previously (see Section 2.5.1.2, “NDB API Basic Insertion Example”). It performs the deletion using a single NdbOperation within a transaction, and handles errors ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-hashmap.html
                                 This section provides information about the HashMap class, which models a hash map in an NDB Cluster. HashMap Class Overview HashMap Constructor HashMap::setName() HashMap::getName() HashMap::setMap() HashMap::getMapLen() HashMap::getMapValues() ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-ndbindexoperation.html
                                NdbIndexOperation Class Overview NdbIndexOperation::deleteTuple() NdbIndexOperation::getIndex() NdbIndexOperation::readTuple() NdbIndexOperation::updateTuple() NdbIndexOperation Class Overview Parent class NdbOperation Child classes None Description ...