Search Results
                    
                    
            https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-errors.html
                                 The following section details some common errors and their suggested fix or alternative solution. If you are still experiencing problems, use the Connector/ODBC mailing list; see Section 9.1, “Connector/ODBC Community Support”. Many problems ...
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-net-csharp.html
                                 The following sample creates a table my_odbc_net and demonstrates its use in C#. { for (int i=0; i < MyOdbcException.Errors.Count; i++) { Console.Write("ERROR #" + i + "\n" + "Message: " + MyOdbcException.Errors[i].Message + "\n" + "Native: " + ...
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-programming-vb-dao.html
                                 The following DAO (Data Access Objects) example creates a table my_dao and demonstrates the use of rs.addNew, rs.update, and result set scrolling. Set rs = conn.OpenRecordset("my_dao") rs.Edit rs!Name = "updated-string" rs.Update rs.Close 'fetch ...
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-reference-datatypes.html
                                 The following table illustrates how Connector/ODBC maps the server data types to default SQL and C data types. 
                                            
                https://dev.mysql.com/doc/internals/en/class-procedure-send-row.html
                                 Prototype: virtual int send_row(List<Item> &fields); This member is called for every result row in the original result set. Whatever you do here is up to you, it is important to note though that to pass on the result row to the client you have to ...
                                            
                https://dev.mysql.com/doc/internals/en/close.html
                                Synopsis virtual int close ( void); void ; Description This is the close method. A good time to free any resources that we have allocated. In sql_select.cc it is only used to close up temporary tables or during the process where a temporary table is ...
                                            
                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/create.html
                                Synopsis virtual int create ( name, form, info); const char * name ; TABLE * form ; HA_CREATE_INFO * info ; Description This is the create method. When create() is called you do not need to open the table. Also, the .frm file will have already been ...
                                            
                https://dev.mysql.com/doc/internals/en/external-lock.html
                                Synopsis virtual int external_lock ( thd, lock_type); THD * thd ; int lock_type ; Description This is the external_lock method. The locking methods for mysql section in lock.cc has additional comments on this topic that may be useful to read. If you ...
                                            
                https://dev.mysql.com/doc/internals/en/frm-file-format.html
                                 Regardless of the storage engine you choose, every MySQL table you create is represented on disk by a .frm file that describes the table's format (that is, the table definition). The file bears the same name as the table, with an .frm extension.