Search Results
                    
                    
            https://dev.mysql.com/doc/extending-mysql/8.4/en/using-own-protocol-trace-plugins.html
                                 Note To use your own protocol trace plugins, you must configure MySQL with the WITH_TEST_TRACE_PLUGIN CMake option disabled because only one protocol trace plugin can be loaded at a time and an error occurs for attempts to load a second one. If you ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-j-reference-type-conversions.html
                                 MySQL Connector/J is flexible in the way it handles conversions between MySQL data types and Java data types. In general, any MySQL data type can be converted to a java.lang.String, and any numeric type can be converted to any of the Java numeric ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-net-programming-trace-source.html
                                Trace switches have associated with them a trace level enumeration, these are Off, Error, Warning, Info, and Verbose. This value is defined by the MySqlTraceEventType public enum contained in the Connector/NET code: public enum MySqlTraceEventType : ... The .NET tracing architecture consists of four main parts: Source - This is the originator of the trace ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-programming-tracing-mysql-custom-listeners.html
                                This value is defined by the MySqlTraceEventType public enum contained in the Connector/NET code: public enum MySqlTraceEventType : int { ConnectionOpened = 1, ConnectionClosed, QueryOpened, ResultOpened, ResultClosed, QueryClosed, ... To build ...
                                            
                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/event-classes-and-types.html
                                 Internally, the server uses C++ classes to represent binary log events. Type codes are associated with subclasses because class instance contents are written to binary or relay logs or are sent over the network from master to slave. In those ...
                                            
                https://dev.mysql.com/doc/internals/en/implementing-store-lock-method.html
                                The potential lock types are defined in includes/thr_lock.h and are copied here: enum thr_lock_type { TL_IGNORE=-1, TL_UNLOCK, /* UNLOCK ANY LOCK */ TL_READ, /* Read lock */ TL_READ_WITH_SHARED_LOCKS, TL_READ_HIGH_PRIORITY, /* High prior. The ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-_query-ordering.html
                                 Ordering 4.3.1.20.1 Synopsis public static final class Query.Ordering extends, Enum<Ordering> {// Public Static Fields public static final Ordering ASCENDING ; public static final Ordering DESCENDING ;// Public Static Methods public static Ordering ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-annotation-nullvalue.html
                                 Enumeration of the "null-value" behavior values. This behavior is specified in the @Persistent annotation. 4.3.2.9.1 Synopsis public final class NullValue extends, Enum<NullValue> {// Public Static Fields public static final NullValue DEFAULT ; ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-annotation-persistencemodifier.html
                                 Enumeration of the persistence-modifier values for a member. 4.3.2.12.1 Synopsis public final class PersistenceModifier extends, Enum<PersistenceModifier> {// Public Static Fields public static final PersistenceModifier NONE ; public static final ...