MySqlConnector
A registry of known authentication plugins.
Registers the specified authentication plugin. The name of this plugin must be unique.
The authentication plugin.
The primary interface implemented by an authentication plugin.
The authentication plugin name.
Creates the authentication response.
The client's password.
The authentication data supplied by the server; this is the auth method data
from the Authentication
Method Switch Request Packet.
encapsulates a list of and the current position within that list.
The commands in the list.
The index of the current command.
If the current command is a prepared statement, the index of the current prepared statement for that command.
Returns true if the connection pool is empty, i.e., all connections are in use. Note that in a highly-multithreaded
environment, the value of this property may be stale by the time it's returned.
Returns the stored procedure cache for this , lazily creating it on demand.
This method may return a different object after has been called. The returned
object is shared between multiple threads and is only safe to use after taking a lock on the
object itself.
Examines all the objects in to determine if any
have an owning that has been garbage-collected. If so, assumes that the connection
was not properly disposed and returns the session to the pool.
The that was used to create this .!--
This object must not be mutated.
provides an internal abstraction over operations that can be cancelled: and .
Returns a unique ID for all implementations of .
Causes the effective command timeout to be reset back to the value specified by .
As per the MSDN documentation,
"This property is the cumulative time-out (for all network packets that are read during the invocation of a method) for all network reads during command
execution or processing of the results. A time-out can still occur after the first row is returned, and does not include user processing time, only network
read time. For example, with a 30 second time out, if Read requires two network packets, then it has 30 seconds to read both network packets. If you call
Read again, it will have another 30 seconds to read any data that it requires."
The method is called by public ADO.NET API methods to reset the effective time remaining at the beginning of a new
method call.
creates the data for an "execute query" command for one or more objects in a command list.
Writes the payload for an "execute query" command to .
The command list and its current position. This will be updated to the position of the next command to write (or past the end if there are no more commands).
A for all the stored procedures in the command list, if any.
The to write the payload to.
true if a command was written; otherwise, false (if there were no more commands in the list).
Returns an containing in the order they
should be tried to satisfy the load balancing policy.
provides an internal abstraction over and .
provides an abstraction over iterating through a sequence of
rows, where each row can fill an array of field values.
represents an individual SQL statement that's been parsed
from a string possibly containing multiple semicolon-delimited SQL statements.
The bytes for this statement that will be written on the wire.
The names of the parameters (if known) of the parameters in the prepared statement. There
is one entry in this list for each parameter, which will be null if the name is unknown.
The indexes of the parameters in the prepared statement. There is one entry in this list for
each parameter; it will be -1 if the parameter is named.
wraps a collection of objects.
It implements to return the memory backing the statements to a shared pool.
is a statement that has been prepared on the MySQL Server.
Disposes and sets to null, ignoring any
or that is thrown.
An type.
The object to dispose.
Writes the text of to , encoded in UTF-8.
The command.
The cached procedures.
The output writer.
true if a complete command was written; otherwise, false.
The statement is complete (apart from potentially needing a semicolon or newline).
The statement needs a newline (e.g., to terminate a final comment).
The statement needs a semicolon (if another statement is going to be concatenated to it).
Implementations of write logs to a particular target.
Returns true if logging for this logger is enabled at the specified level.
The log level.
true if logging is enabled; otherwise, false.
Writes a log message to the target.
The log level.
The log message. See documentation for for notes on interpreting {0} within this string.
If not null or empty, then includes formatting placeholders (e.g., {0})
which must be replaced with the arguments in , using or similar.
If null or an empty array, then is a literal string; any curly braces within it must be treated as literal characters,
not formatting placeholders.
If not null, an associated with the log message.
This method may be called from multiple threads and must be thread-safe. This method may be called
even if would return false for ; the implementation must
check if logging is enabled for that level.
Implementations of create logger instances.
Creates a logger with the specified name. This method may be called from multiple threads and must be thread-safe.
Controls logging for MySqlConnector.
Allows the to be set for this library. can
be set once, and must be set before any other library methods are used.
is an implementation of that does nothing.
This is the default logging implementation unless is set.
Returns false.
Ignores the specified log message.
Returns a singleton instance of .
Creates loggers that do nothing.
Returns a .
MySQL character set codes.
Obtained from SELECT id, collation_name FROM information_schema.collations ORDER BY id; on MySQL 8.0.16.
Field cannot be NULL.
Field is part of a primary key.
Field is part of a unique key.
Field is part of a nonunique key.
Field is a BLOB or TEXT (deprecated).
Field has the UNSIGNED attribute.
Field has the ZEROFILL attribute.
Field has the BINARY attribute.
Field is an ENUM.
Field has the AUTO_INCREMENT attribute.
Field is a TIMESTAMP (deprecated).
Field is a SET.
Field is numeric.
See MySQL documentation.
Returns true if contains an EOF packet.
Note that EOF packets can appear in places where a length-encoded integer (which starts with the same signature byte) may appear, so the length
has to be checked to verify that it is an EOF packet.
The payload to examine.
true if this is an EOF packet; otherwise, false.
The MySQL Capability flags.
No specified capabilities.
Use the improved version of Old Password Authentication.
Send found rows instead of affected rows in EOF_Packet.
Longer flags in Protocol::ColumnDefinition320.
Database (schema) name can be specified on connect in Handshake Response Packet.
Do not permit database.table.column.
Supports compression.
Special handling of ODBC behavior.
Enables the LOCAL INFILE request of LOAD DATA|XML.
Parser can ignore spaces before '('.
Supports the 4.1 protocol.
Server: Supports interactive and noninteractive clients. Client: The session wait_timeout
variable is set to the value of the session interactive_timeout
variable.
Supports SSL.
Can send status flags in EOF_Packet.
Supports Authentication::Native41.
Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
Can send multiple resultsets for COM_QUERY.
Can send multiple resultsets for COM_STMT_EXECUTE.
Sends extra data in Initial Handshake Packet and supports the pluggable authentication protocol.
Permits connection attributes in Protocol::HandshakeResponse41.
Understands length-encoded integer for auth response data in Protocol::HandshakeResponse41.
Announces support for expired password extension.
Can set SERVER_SESSION_STATE_CHANGED in the Status Flags and send session-state change data after a OK packet.
Can send OK after a Text Resultset.
Client supports progress indicator.
Client supports COM_MULTI (i.e., CommandKind.Multi)
Support of array binding.
is a class that holds an instance of .
Its primary difference from is that it's a reference type, so mutations
to this object are visible to other objects that hold a reference to it.
Hashes a password with the "Secure Password Authentication" method.
The 20-byte random challenge (from the "auth-plugin-data" in the initial handshake).
The password to hash.
A 20-byte password hash.
See Secure Password Authentication.
Helper class to translate NegotiateStream framing for SPNEGO token
into MySQL protocol packets.
Serves as underlying stream for System.Net.NegotiateStream
to perform MariaDB's auth_gssapi_client authentication.
NegotiateStream protocol is described in e.g here
https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NNS/[MS-NNS].pdf
We only use Handshake Messages for authentication.
The remaining timeout (in milliseconds) for the next I/O read. Use to represent no (or, infinite) timeout.
Reads data from this byte handler.
The buffer to read into.
The to use when reading data.
A holding the number of bytes read. If reading failed, this will be zero.
Writes data to this byte handler.
The data to write.
The to use when writing.
A . The value of this object is not defined.
Specifies whether to perform synchronous or asynchronous I/O.
Use synchronous I/O.
Use asynchronous I/O.
Starts a new "conversation" with the MySQL Server. This resets the "sequence id"
and should be called when a new command begins.
Gets or sets the underlying that data is read from and written to.
Reads the next payload.
An that will cache any buffers allocated during this
read. (To disable caching, pass new ArraySegmentHolder<byte>
so the cache will be garbage-collected
when this method returns.)
The to use if there is a protocol error.
The to use when reading data.
An containing the data that was read. This
will be valid to read from until the next time or
is called.
Writes a payload.
The data to write.
The to use when writing.
A . The value of this object is not defined.
Specifies how to handle protocol errors.
Throw an exception when there is a protocol error. This is the default.
Ignore any protocol errors.
A transaction is active.
Auto-commit is enabled
Used by Binary Protocol Resultset to signal that COM_STMT_FETCH must be used to fetch the row-data.
In a read-only transaction.
Connection state information has changed.
SESSION_TRACK_SYSTEM_VARIABLES: one or more system variables changed
SESSION_TRACK_SCHEMA: schema changed
SESSION_TRACK_STATE_CHANGE: "track state change" changed
SESSION_TRACK_GTIDS: "track GTIDs" changed
A sentinel value indicating no (or infinite) timeout.
A wrapper around a resizable array. This type is intended to be used with .
Do not call this method directly; use .
An that supports having its underlying array reallocated and resized.
Adds a timer that will invoke in approximately milliseconds.
The time (in milliseconds) to wait before invoking .
The callback to invoke.
A timer ID that can be passed to to cancel the timer.
Cancels the timer with the specified ID.
The timer ID (returned from ).
true if the timer was removed; otherwise, false. This method will return false if the specified timer has already fired.
Loads a RSA key from a PEM string.
The key, in PEM format.
An RSA key.
Returns a new that starts at index into .
The from which to create a slice.
The non-negative, zero-based starting index of the new slice (relative to of .
A new starting at the th element of and continuing to the end of .
Returns a new that starts at index into and has a length of .
The from which to create a slice.
The non-negative, zero-based starting index of the new slice (relative to of .
The non-negative length of the new slice.
A new of length , starting at the th element of .
Returns a new that is a slice of starting at .
The array to slice.
The offset at which to slice.
The length of the slice.
A new that is a slice of from to the end.
Finds the next index of in , starting at index .
The array to search.
The offset at which to start searching.
The pattern to find in .
The offset of within , or -1 if was not found.
Resizes to hold at least items.
may be null, in which case a new will be allocated.
The name of the table to insert rows into.
The table name shouldn't be quoted or escaped.
Defines the number of rows to be processed before generating a notification event.
Occurs every time that the number of rows specified by the property have been processed,
and once after all rows have been copied (if is non-zero).
Receipt of a RowsCopied event does not imply that any rows have been sent to the server or committed.
A collection of objects. If the columns being copied from the
data source line up one-to-one with the columns in the destination table then populating this collection is
unnecessary. Otherwise, this should be filled with a collection of objects
specifying how source columns are to be mapped onto destination columns. If one column mapping is specified,
then all must be specified.
Returns the number of rows that were copied (after WriteToServer(Async)
finishes).
specifies how to map columns in the source data to
destination columns when using .
Initializes with the default values.
Initializes to the specified values.
The ordinal position of the source column.
The name of the destination column.
The optional expression to be used to set the destination column.
The ordinal position of the source column to map from.
The name of the destination column to copy to. To use an expression, this should be the name of a unique user-defined variable.
An optional expression for setting a destination column. To use an expression, the should
be set to the name of a user-defined variable and this expression should set a column using that variable.
To populate a binary column, you must set to a variable name, and to an
expression that uses UNHEX
to set the column value, e.g., `destColumn` = UNHEX(@variableName)
.
The name of the local (if is true) or remote (otherwise) file to load.
Either this or must be set.
A containing the data to load. Either this or must be set.
The property must be true if this is set.
Do not use certificate store
Use certificate store for the current user
User certificate store for the machine
Registers as a callback with if cancellation is supported.
The .
An object that must be disposed to revoke the cancellation registration.
This method is more efficient than calling token.Register(Command.Cancel)
because it avoids
unnecessary allocations.
Begins a database transaction.
A representing the new database transaction.
Transactions may not be nested.
Begins a database transaction.
The for the transaction.
A representing the new database transaction.
Transactions may not be nested.
Begins a database transaction.
The for the transaction.
If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
A representing the new database transaction.
Transactions may not be nested.
Begins a database transaction asynchronously.
A token to cancel the asynchronous operation.
A representing the new database transaction.
Transactions may not be nested.
Begins a database transaction asynchronously.
The for the transaction.
A token to cancel the asynchronous operation.
A representing the new database transaction.
Transactions may not be nested.
Begins a database transaction asynchronously.
The for the transaction.
If true, changes to tables used in the transaction are prohibited; otherwise, they are permitted.
A token to cancel the asynchronous operation.
A representing the new database transaction.
Transactions may not be nested.
Gets the time (in seconds) to wait while trying to establish a connection
before terminating the attempt and generating an error. This value
is controlled by ,
which defaults to 15 seconds.
Returns an unopened copy of this connection with a new connection string. If the Password
in is not set, the password from this connection will be used.
This allows creating a new connection with the same security information while changing other options,
such as database or pooling.
The new connection string to be used.
A new with different connection string options but
the same password as this connection (unless overridden by ).
Specifies the type of connection to make to the server.
TCP/IP connection.
Named pipe connection. Only works on Windows.
Unix domain socket connection. Only works on Unix/Linux.
Shared memory connection. Not currently supported.
The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
The default value is 15.
The used when reading from the database.
Use when reading; allow any in command parameters.
Use when reading; reject in command parameters.
Use when reading; reject in command parameters.
MySQL Server error codes. Taken from Server Error Codes and Messages.
Not all rows from the source supplied to were copied to .
The timeout period specified by elapsed before the operation completed.
ER_HASHCHK
ER_NISAMCHK
ER_NO
ER_YES
ER_CANT_CREATE_FILE
ER_CANT_CREATE_TABLE
ER_CANT_CREATE_DB
ER_DB_CREATE_EXISTS
ER_DB_DROP_EXISTS
ER_DB_DROP_DELETE
ER_DB_DROP_RMDIR
ER_CANT_DELETE_FILE
ER_CANT_FIND_SYSTEM_REC
ER_CANT_GET_STAT
ER_CANT_GET_WD
ER_CANT_LOCK
ER_CANT_OPEN_FILE
ER_FILE_NOT_FOUND
ER_CANT_READ_DIR
ER_CANT_SET_WD
ER_CHECKREAD
ER_DISK_FULL
ER_DUP_KEY
ER_ERROR_ON_CLOSE
ER_ERROR_ON_READ
ER_ERROR_ON_RENAME
ER_ERROR_ON_WRITE
ER_FILE_USED
ER_FILSORT_ABORT
ER_FORM_NOT_FOUND
ER_GET_ERRNO
ER_ILLEGAL_HA
ER_KEY_NOT_FOUND
ER_NOT_FORM_FILE
ER_NOT_KEYFILE
ER_OLD_KEYFILE
ER_OPEN_AS_READONLY
ER_OUTOFMEMORY
ER_OUT_OF_SORTMEMORY
ER_UNEXPECTED_EOF
ER_CON_COUNT_ERROR
ER_OUT_OF_RESOURCES
ER_BAD_HOST_ERROR
ER_HANDSHAKE_ERROR
ER_DBACCESS_DENIED_ERROR
ER_ACCESS_DENIED_ERROR
ER_NO_DB_ERROR
ER_UNKNOWN_COM_ERROR
ER_BAD_NULL_ERROR
ER_BAD_DB_ERROR
ER_TABLE_EXISTS_ERROR
ER_BAD_TABLE_ERROR
ER_NON_UNIQ_ERROR
ER_SERVER_SHUTDOWN
ER_BAD_FIELD_ERROR
ER_WRONG_FIELD_WITH_GROUP
ER_WRONG_GROUP_FIELD
ER_WRONG_SUM_SELECT
ER_WRONG_VALUE_COUNT
ER_TOO_LONG_IDENT
ER_DUP_FIELDNAME
ER_DUP_KEYNAME
ER_DUP_ENTRY
ER_WRONG_FIELD_SPEC
You have an error in your SQL syntax (ER_PARSE_ERROR).
ER_EMPTY_QUERY
ER_NONUNIQ_TABLE
ER_INVALID_DEFAULT
ER_MULTIPLE_PRI_KEY
ER_TOO_MANY_KEYS
ER_TOO_MANY_KEY_PARTS
ER_TOO_LONG_KEY
ER_KEY_COLUMN_DOES_NOT_EXITS
ER_BLOB_USED_AS_KEY
ER_TOO_BIG_FIELDLENGTH
ER_WRONG_AUTO_KEY
ER_READY
ER_NORMAL_SHUTDOWN
ER_GOT_SIGNAL
ER_SHUTDOWN_COMPLETE
ER_FORCING_CLOSE
ER_IPSOCK_ERROR
ER_NO_SUCH_INDEX
ER_WRONG_FIELD_TERMINATORS
ER_BLOBS_AND_NO_TERMINATED
ER_TEXTFILE_NOT_READABLE
ER_FILE_EXISTS_ERROR
ER_LOAD_INFO
ER_ALTER_INFO
ER_WRONG_SUB_KEY
ER_CANT_REMOVE_ALL_FIELDS
ER_CANT_DROP_FIELD_OR_KEY
ER_INSERT_INFO
ER_UPDATE_TABLE_USED
ER_NO_SUCH_THREAD
ER_KILL_DENIED_ERROR
ER_NO_TABLES_USED
ER_TOO_BIG_SET
ER_NO_UNIQUE_LOGFILE
ER_TABLE_NOT_LOCKED_FOR_WRITE
ER_TABLE_NOT_LOCKED
ER_BLOB_CANT_HAVE_DEFAULT
ER_WRONG_DB_NAME
ER_WRONG_TABLE_NAME
ER_TOO_BIG_SELECT
ER_UNKNOWN_ERROR
ER_UNKNOWN_PROCEDURE
ER_WRONG_PARAMCOUNT_TO_PROCEDURE
ER_WRONG_PARAMETERS_TO_PROCEDURE
ER_UNKNOWN_TABLE
ER_FIELD_SPECIFIED_TWICE
ER_INVALID_GROUP_FUNC_USE
ER_UNSUPPORTED_EXTENSION
ER_TABLE_MUST_HAVE_COLUMNS
ER_RECORD_FILE_FULL
ER_UNKNOWN_CHARACTER_SET
ER_TOO_MANY_TABLES
ER_TOO_MANY_FIELDS
ER_TOO_BIG_ROWSIZE
ER_STACK_OVERRUN
ER_WRONG_OUTER_JOIN
ER_NULL_COLUMN_IN_INDEX
ER_CANT_FIND_UDF
ER_CANT_INITIALIZE_UDF
ER_UDF_NO_PATHS
ER_UDF_EXISTS
ER_CANT_OPEN_LIBRARY
ER_CANT_FIND_DL_ENTRY
ER_FUNCTION_NOT_DEFINED
ER_HOST_IS_BLOCKED
ER_HOST_NOT_PRIVILEGED
ER_PASSWORD_ANONYMOUS_USER
ER_PASSWORD_NOT_ALLOWED
ER_PASSWORD_NO_MATCH
ER_UPDATE_INFO
ER_CANT_CREATE_THREAD
ER_WRONG_VALUE_COUNT_ON_ROW
ER_CANT_REOPEN_TABLE
ER_INVALID_USE_OF_NULL
ER_REGEXP_ERROR
ER_MIX_OF_GROUP_FUNC_AND_FIELDS
ER_NONEXISTING_GRANT
ER_TABLEACCESS_DENIED_ERROR
ER_COLUMNACCESS_DENIED_ERROR
ER_ILLEGAL_GRANT_FOR_TABLE
ER_GRANT_WRONG_HOST_OR_USER
ER_NO_SUCH_TABLE
ER_NONEXISTING_TABLE_GRANT
ER_NOT_ALLOWED_COMMAND
ER_SYNTAX_ERROR
ER_UNUSED1
ER_UNUSED2
ER_ABORTING_CONNECTION
ER_NET_PACKET_TOO_LARGE
ER_NET_READ_ERROR_FROM_PIPE
ER_NET_FCNTL_ERROR
ER_NET_PACKETS_OUT_OF_ORDER
ER_NET_UNCOMPRESS_ERROR
ER_NET_READ_ERROR
ER_NET_READ_INTERRUPTED
ER_NET_ERROR_ON_WRITE
ER_NET_WRITE_INTERRUPTED
ER_TOO_LONG_STRING
ER_TABLE_CANT_HANDLE_BLOB
ER_TABLE_CANT_HANDLE_AUTO_INCREMENT
ER_UNUSED3
ER_WRONG_COLUMN_NAME
ER_WRONG_KEY_COLUMN
ER_WRONG_MRG_TABLE
ER_DUP_UNIQUE
ER_BLOB_KEY_WITHOUT_LENGTH
ER_PRIMARY_CANT_HAVE_NULL
ER_TOO_MANY_ROWS
ER_REQUIRES_PRIMARY_KEY
ER_NO_RAID_COMPILED
ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE
ER_KEY_DOES_NOT_EXITS
ER_CHECK_NO_SUCH_TABLE
ER_CHECK_NOT_IMPLEMENTED
ER_CANT_DO_THIS_DURING_AN_TRANSACTION
ER_ERROR_DURING_COMMIT
ER_ERROR_DURING_ROLLBACK
ER_ERROR_DURING_FLUSH_LOGS
ER_ERROR_DURING_CHECKPOINT
ER_NEW_ABORTING_CONNECTION
ER_DUMP_NOT_IMPLEMENTED
ER_FLUSH_MASTER_BINLOG_CLOSED
ER_INDEX_REBUILD
ER_MASTER
ER_MASTER_NET_READ
ER_MASTER_NET_WRITE
ER_FT_MATCHING_KEY_NOT_FOUND
ER_LOCK_OR_ACTIVE_TRANSACTION
ER_UNKNOWN_SYSTEM_VARIABLE
ER_CRASHED_ON_USAGE
ER_CRASHED_ON_REPAIR
ER_WARNING_NOT_COMPLETE_ROLLBACK
ER_TRANS_CACHE_FULL
ER_SLAVE_MUST_STOP
ER_SLAVE_NOT_RUNNING
ER_BAD_SLAVE
ER_MASTER_INFO
ER_SLAVE_THREAD
ER_TOO_MANY_USER_CONNECTIONS
ER_SET_CONSTANTS_ONLY
ER_LOCK_WAIT_TIMEOUT
ER_LOCK_TABLE_FULL
ER_READ_ONLY_TRANSACTION
ER_DROP_DB_WITH_READ_LOCK
ER_CREATE_DB_WITH_READ_LOCK
ER_WRONG_ARGUMENTS
ER_NO_PERMISSION_TO_CREATE_USER
ER_UNION_TABLES_IN_DIFFERENT_DIR
ER_LOCK_DEADLOCK
ER_TABLE_CANT_HANDLE_FT
ER_CANNOT_ADD_FOREIGN
ER_NO_REFERENCED_ROW
ER_ROW_IS_REFERENCED
ER_CONNECT_TO_MASTER
ER_QUERY_ON_MASTER
ER_ERROR_WHEN_EXECUTING_COMMAND
ER_WRONG_USAGE
ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
ER_CANT_UPDATE_WITH_READLOCK
ER_MIXING_NOT_ALLOWED
ER_DUP_ARGUMENT
ER_USER_LIMIT_REACHED
ER_SPECIFIC_ACCESS_DENIED_ERROR
ER_LOCAL_VARIABLE
ER_GLOBAL_VARIABLE
ER_NO_DEFAULT
ER_WRONG_VALUE_FOR_VAR
ER_WRONG_TYPE_FOR_VAR
ER_VAR_CANT_BE_READ
ER_CANT_USE_OPTION_HERE
ER_NOT_SUPPORTED_YET
ER_MASTER_FATAL_ERROR_READING_BINLOG
ER_SLAVE_IGNORED_TABLE
ER_INCORRECT_GLOBAL_LOCAL_VAR
ER_WRONG_FK_DEF
ER_KEY_REF_DO_NOT_MATCH_TABLE_REF
ER_OPERAND_COLUMNS
ER_SUBQUERY_NO_1_ROW
ER_UNKNOWN_STMT_HANDLER
ER_CORRUPT_HELP_DB
ER_CYCLIC_REFERENCE
ER_AUTO_CONVERT
ER_ILLEGAL_REFERENCE
ER_DERIVED_MUST_HAVE_ALIAS
ER_SELECT_REDUCED
ER_TABLENAME_NOT_ALLOWED_HERE
ER_NOT_SUPPORTED_AUTH_MODE
ER_SPATIAL_CANT_HAVE_NULL
ER_COLLATION_CHARSET_MISMATCH
ER_SLAVE_WAS_RUNNING
ER_SLAVE_WAS_NOT_RUNNING
ER_TOO_BIG_FOR_UNCOMPRESS
ER_ZLIB_Z_MEM_ERROR
ER_ZLIB_Z_BUF_ERROR
ER_ZLIB_Z_DATA_ERROR
ER_CUT_VALUE_GROUP_CONCAT
ER_WARN_TOO_FEW_RECORDS
ER_WARN_TOO_MANY_RECORDS
ER_WARN_NULL_TO_NOTNULL
ER_WARN_DATA_OUT_OF_RANGE
WARN_DATA_TRUNCATED
ER_WARN_USING_OTHER_HANDLER
ER_CANT_AGGREGATE_2COLLATIONS
ER_DROP_USER
ER_REVOKE_GRANTS
ER_CANT_AGGREGATE_3COLLATIONS
ER_CANT_AGGREGATE_NCOLLATIONS
ER_VARIABLE_IS_NOT_STRUCT
ER_UNKNOWN_COLLATION
ER_SLAVE_IGNORED_SSL_PARAMS
ER_SERVER_IS_IN_SECURE_AUTH_MODE
ER_WARN_FIELD_RESOLVED
ER_BAD_SLAVE_UNTIL_COND
ER_MISSING_SKIP_SLAVE
ER_UNTIL_COND_IGNORED
ER_WRONG_NAME_FOR_INDEX
ER_WRONG_NAME_FOR_CATALOG
ER_WARN_QC_RESIZE
ER_BAD_FT_COLUMN
ER_UNKNOWN_KEY_CACHE
ER_WARN_HOSTNAME_WONT_WORK
ER_UNKNOWN_STORAGE_ENGINE
ER_WARN_DEPRECATED_SYNTAX
ER_NON_UPDATABLE_TABLE
ER_FEATURE_DISABLED
ER_OPTION_PREVENTS_STATEMENT
ER_DUPLICATED_VALUE_IN_TYPE
ER_TRUNCATED_WRONG_VALUE
ER_TOO_MUCH_AUTO_TIMESTAMP_COLS
ER_INVALID_ON_UPDATE
ER_UNSUPPORTED_PS
ER_GET_ERRMSG
ER_GET_TEMPORARY_ERRMSG
ER_UNKNOWN_TIME_ZONE
ER_WARN_INVALID_TIMESTAMP
ER_INVALID_CHARACTER_STRING
ER_WARN_ALLOWED_PACKET_OVERFLOWED
ER_CONFLICTING_DECLARATIONS
ER_SP_NO_RECURSIVE_CREATE
ER_SP_ALREADY_EXISTS
ER_SP_DOES_NOT_EXIST
ER_SP_DROP_FAILED
ER_SP_STORE_FAILED
ER_SP_LILABEL_MISMATCH
ER_SP_LABEL_REDEFINE
ER_SP_LABEL_MISMATCH
ER_SP_UNINIT_VAR
ER_SP_BADSELECT
ER_SP_BADRETURN
ER_SP_BADSTATEMENT
ER_UPDATE_LOG_DEPRECATED_IGNORED
ER_UPDATE_LOG_DEPRECATED_TRANSLATED
Query execution was interrupted (ER_QUERY_INTERRUPTED).
ER_SP_WRONG_NO_OF_ARGS
ER_SP_COND_MISMATCH
ER_SP_NORETURN
ER_SP_NORETURNEND
ER_SP_BAD_CURSOR_QUERY
ER_SP_BAD_CURSOR_SELECT
ER_SP_CURSOR_MISMATCH
ER_SP_CURSOR_ALREADY_OPEN
ER_SP_CURSOR_NOT_OPEN
ER_SP_UNDECLARED_VAR
ER_SP_WRONG_NO_OF_FETCH_ARGS
ER_SP_FETCH_NO_DATA
ER_SP_DUP_PARAM
ER_SP_DUP_VAR
ER_SP_DUP_COND
ER_SP_DUP_CURS
ER_SP_CANT_ALTER
ER_SP_SUBSELECT_NYI
ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG
ER_SP_VARCOND_AFTER_CURSHNDLR
ER_SP_CURSOR_AFTER_HANDLER
ER_SP_CASE_NOT_FOUND
ER_FPARSER_TOO_BIG_FILE
ER_FPARSER_BAD_HEADER
ER_FPARSER_EOF_IN_COMMENT
ER_FPARSER_ERROR_IN_PARAMETER
ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER
ER_VIEW_NO_EXPLAIN
ER_FRM_UNKNOWN_TYPE
ER_WRONG_OBJECT
ER_NONUPDATEABLE_COLUMN
ER_VIEW_SELECT_DERIVED
ER_VIEW_SELECT_CLAUSE
ER_VIEW_SELECT_VARIABLE
ER_VIEW_SELECT_TMPTABLE
ER_VIEW_WRONG_LIST
ER_WARN_VIEW_MERGE
ER_WARN_VIEW_WITHOUT_KEY
ER_VIEW_INVALID
ER_SP_NO_DROP_SP
ER_SP_GOTO_IN_HNDLR
ER_TRG_ALREADY_EXISTS
ER_TRG_DOES_NOT_EXIST
ER_TRG_ON_VIEW_OR_TEMP_TABLE
ER_TRG_CANT_CHANGE_ROW
ER_TRG_NO_SUCH_ROW_IN_TRG
ER_NO_DEFAULT_FOR_FIELD
ER_DIVISION_BY_ZERO
ER_TRUNCATED_WRONG_VALUE_FOR_FIELD
ER_ILLEGAL_VALUE_FOR_TYPE
ER_VIEW_NONUPD_CHECK
ER_VIEW_CHECK_FAILED
ER_PROCACCESS_DENIED_ERROR
ER_RELAY_LOG_FAIL
ER_PASSWD_LENGTH
ER_UNKNOWN_TARGET_BINLOG
ER_IO_ERR_LOG_INDEX_READ
ER_BINLOG_PURGE_PROHIBITED
ER_FSEEK_FAIL
ER_BINLOG_PURGE_FATAL_ERR
ER_LOG_IN_USE
ER_LOG_PURGE_UNKNOWN_ERR
ER_RELAY_LOG_INIT
ER_NO_BINARY_LOGGING
ER_RESERVED_SYNTAX
ER_WSAS_FAILED
ER_DIFF_GROUPS_PROC
ER_NO_GROUP_FOR_PROC
ER_ORDER_WITH_PROC
ER_LOGGING_PROHIBIT_CHANGING_OF
ER_NO_FILE_MAPPING
ER_WRONG_MAGIC
ER_PS_MANY_PARAM
ER_KEY_PART_0
ER_VIEW_CHECKSUM
ER_VIEW_MULTIUPDATE
ER_VIEW_NO_INSERT_FIELD_LIST
ER_VIEW_DELETE_MERGE_VIEW
ER_CANNOT_USER
ER_XAER_NOTA
ER_XAER_INVAL
ER_XAER_RMFAIL
ER_XAER_OUTSIDE
ER_XAER_RMERR
ER_XA_RBROLLBACK
ER_NONEXISTING_PROC_GRANT
ER_PROC_AUTO_GRANT_FAIL
ER_PROC_AUTO_REVOKE_FAIL
ER_DATA_TOO_LONG
ER_SP_BAD_SQLSTATE
ER_STARTUP
ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR
ER_CANT_CREATE_USER_WITH_GRANT
ER_WRONG_VALUE_FOR_TYPE
ER_TABLE_DEF_CHANGED
ER_SP_DUP_HANDLER
ER_SP_NOT_VAR_ARG
ER_SP_NO_RETSET
ER_CANT_CREATE_GEOMETRY_OBJECT
ER_FAILED_ROUTINE_BREAK_BINLOG
ER_BINLOG_UNSAFE_ROUTINE
ER_BINLOG_CREATE_ROUTINE_NEED_SUPER
ER_EXEC_STMT_WITH_OPEN_CURSOR
ER_STMT_HAS_NO_OPEN_CURSOR
ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG
ER_NO_DEFAULT_FOR_VIEW_FIELD
ER_SP_NO_RECURSION
ER_TOO_BIG_SCALE
ER_TOO_BIG_PRECISION
ER_M_BIGGER_THAN_D
ER_WRONG_LOCK_OF_SYSTEM_TABLE
ER_CONNECT_TO_FOREIGN_DATA_SOURCE
ER_QUERY_ON_FOREIGN_DATA_SOURCE
ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST
ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE
ER_FOREIGN_DATA_STRING_INVALID
ER_CANT_CREATE_FEDERATED_TABLE
ER_TRG_IN_WRONG_SCHEMA
ER_STACK_OVERRUN_NEED_MORE
ER_TOO_LONG_BODY
ER_WARN_CANT_DROP_DEFAULT_KEYCACHE
ER_TOO_BIG_DISPLAYWIDTH
ER_XAER_DUPID
ER_DATETIME_FUNCTION_OVERFLOW
ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG
ER_VIEW_PREVENT_UPDATE
ER_PS_NO_RECURSION
ER_SP_CANT_SET_AUTOCOMMIT
ER_MALFORMED_DEFINER
ER_VIEW_FRM_NO_USER
ER_VIEW_OTHER_USER
ER_NO_SUCH_USER
ER_FORBID_SCHEMA_CHANGE
ER_ROW_IS_REFERENCED_2
ER_NO_REFERENCED_ROW_2
ER_SP_BAD_VAR_SHADOW
ER_TRG_NO_DEFINER
ER_OLD_FILE_FORMAT
ER_SP_RECURSION_LIMIT
ER_SP_PROC_TABLE_CORRUPT
ER_SP_WRONG_NAME
ER_TABLE_NEEDS_UPGRADE
ER_SP_NO_AGGREGATE
ER_MAX_PREPARED_STMT_COUNT_REACHED
ER_VIEW_RECURSIVE
ER_NON_GROUPING_FIELD_USED
ER_TABLE_CANT_HANDLE_SPKEYS
ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA
ER_REMOVED_SPACES
ER_AUTOINC_READ_FAILED
ER_USERNAME
ER_HOSTNAME
ER_WRONG_STRING_LENGTH
ER_NON_INSERTABLE_TABLE
ER_ADMIN_WRONG_MRG_TABLE
ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT
ER_NAME_BECOMES_EMPTY
ER_AMBIGUOUS_FIELD_TERM
ER_FOREIGN_SERVER_EXISTS
ER_FOREIGN_SERVER_DOESNT_EXIST
ER_ILLEGAL_HA_CREATE_OPTION
ER_PARTITION_REQUIRES_VALUES_ERROR
ER_PARTITION_WRONG_VALUES_ERROR
ER_PARTITION_MAXVALUE_ERROR
ER_PARTITION_SUBPARTITION_ERROR
ER_PARTITION_SUBPART_MIX_ERROR
ER_PARTITION_WRONG_NO_PART_ERROR
ER_PARTITION_WRONG_NO_SUBPART_ERROR
ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR
ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR
ER_FIELD_NOT_FOUND_PART_ERROR
ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR
ER_INCONSISTENT_PARTITION_INFO_ERROR
ER_PARTITION_FUNC_NOT_ALLOWED_ERROR
ER_PARTITIONS_MUST_BE_DEFINED_ERROR
ER_RANGE_NOT_INCREASING_ERROR
ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR
ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR
ER_PARTITION_ENTRY_ERROR
ER_MIX_HANDLER_ERROR
ER_PARTITION_NOT_DEFINED_ERROR
ER_TOO_MANY_PARTITIONS_ERROR
ER_SUBPARTITION_ERROR
ER_CANT_CREATE_HANDLER_FILE
ER_BLOB_FIELD_IN_PART_FUNC_ERROR
ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF
ER_NO_PARTS_ERROR
ER_PARTITION_MGMT_ON_NONPARTITIONED
ER_FOREIGN_KEY_ON_PARTITIONED
ER_DROP_PARTITION_NON_EXISTENT
ER_DROP_LAST_PARTITION
ER_COALESCE_ONLY_ON_HASH_PARTITION
ER_REORG_HASH_ONLY_ON_SAME_NO
ER_REORG_NO_PARAM_ERROR
ER_ONLY_ON_RANGE_LIST_PARTITION
ER_ADD_PARTITION_SUBPART_ERROR
ER_ADD_PARTITION_NO_NEW_PARTITION
ER_COALESCE_PARTITION_NO_PARTITION
ER_REORG_PARTITION_NOT_EXIST
ER_SAME_NAME_PARTITION
ER_NO_BINLOG_ERROR
ER_CONSECUTIVE_REORG_PARTITIONS
ER_REORG_OUTSIDE_RANGE
ER_PARTITION_FUNCTION_FAILURE
ER_PART_STATE_ERROR
ER_LIMITED_PART_RANGE
ER_PLUGIN_IS_NOT_LOADED
ER_WRONG_VALUE
ER_NO_PARTITION_FOR_GIVEN_VALUE
ER_FILEGROUP_OPTION_ONLY_ONCE
ER_CREATE_FILEGROUP_FAILED
ER_DROP_FILEGROUP_FAILED
ER_TABLESPACE_AUTO_EXTEND_ERROR
ER_WRONG_SIZE_NUMBER
ER_SIZE_OVERFLOW_ERROR
ER_ALTER_FILEGROUP_FAILED
ER_BINLOG_ROW_LOGGING_FAILED
ER_BINLOG_ROW_WRONG_TABLE_DEF
ER_BINLOG_ROW_RBR_TO_SBR
ER_EVENT_ALREADY_EXISTS
ER_EVENT_STORE_FAILED
ER_EVENT_DOES_NOT_EXIST
ER_EVENT_CANT_ALTER
ER_EVENT_DROP_FAILED
ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG
ER_EVENT_ENDS_BEFORE_STARTS
ER_EVENT_EXEC_TIME_IN_THE_PAST
ER_EVENT_OPEN_TABLE_FAILED
ER_EVENT_NEITHER_M_EXPR_NOR_M_AT
ER_OBSOLETE_COL_COUNT_DOESNT_MATCH_CORRUPTED
ER_OBSOLETE_CANNOT_LOAD_FROM_TABLE
ER_EVENT_CANNOT_DELETE
ER_EVENT_COMPILE_ERROR
ER_EVENT_SAME_NAME
ER_EVENT_DATA_TOO_LONG
ER_DROP_INDEX_FK
ER_WARN_DEPRECATED_SYNTAX_WITH_VER
ER_CANT_WRITE_LOCK_LOG_TABLE
ER_CANT_LOCK_LOG_TABLE
ER_FOREIGN_DUPLICATE_KEY_OLD_UNUSED
ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE
ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR
ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT
ER_NDB_CANT_SWITCH_BINLOG_FORMAT
ER_PARTITION_NO_TEMPORARY
ER_PARTITION_CONST_DOMAIN_ERROR
ER_PARTITION_FUNCTION_IS_NOT_ALLOWED
ER_DDL_LOG_ERROR
ER_NULL_IN_VALUES_LESS_THAN
ER_WRONG_PARTITION_NAME
ER_CANT_CHANGE_TX_CHARACTERISTICS
ER_DUP_ENTRY_AUTOINCREMENT_CASE
ER_EVENT_MODIFY_QUEUE_ERROR
ER_EVENT_SET_VAR_ERROR
ER_PARTITION_MERGE_ERROR
ER_CANT_ACTIVATE_LOG
ER_RBR_NOT_AVAILABLE
ER_BASE64_DECODE_ERROR
ER_EVENT_RECURSION_FORBIDDEN
ER_EVENTS_DB_ERROR
ER_ONLY_INTEGERS_ALLOWED
ER_UNSUPORTED_LOG_ENGINE
ER_BAD_LOG_STATEMENT
ER_CANT_RENAME_LOG_TABLE
ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT
ER_WRONG_PARAMETERS_TO_NATIVE_FCT
ER_WRONG_PARAMETERS_TO_STORED_FCT
ER_NATIVE_FCT_NAME_COLLISION
ER_DUP_ENTRY_WITH_KEY_NAME
ER_BINLOG_PURGE_EMFILE
ER_EVENT_CANNOT_CREATE_IN_THE_PAST
ER_EVENT_CANNOT_ALTER_IN_THE_PAST
ER_SLAVE_INCIDENT
ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT
ER_BINLOG_UNSAFE_STATEMENT
ER_SLAVE_FATAL_ERROR
ER_SLAVE_RELAY_LOG_READ_FAILURE
ER_SLAVE_RELAY_LOG_WRITE_FAILURE
ER_SLAVE_CREATE_EVENT_FAILURE
ER_SLAVE_MASTER_COM_FAILURE
ER_BINLOG_LOGGING_IMPOSSIBLE
ER_VIEW_NO_CREATION_CTX
ER_VIEW_INVALID_CREATION_CTX
ER_SR_INVALID_CREATION_CTX
ER_TRG_CORRUPTED_FILE
ER_TRG_NO_CREATION_CTX
ER_TRG_INVALID_CREATION_CTX
ER_EVENT_INVALID_CREATION_CTX
ER_TRG_CANT_OPEN_TABLE
ER_CANT_CREATE_SROUTINE
ER_NEVER_USED
ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT
ER_SLAVE_CORRUPT_EVENT
ER_LOAD_DATA_INVALID_COLUMN
ER_LOG_PURGE_NO_FILE
ER_XA_RBTIMEOUT
ER_XA_RBDEADLOCK
ER_NEED_REPREPARE
ER_DELAYED_NOT_SUPPORTED
WARN_NO_MASTER_INFO
WARN_OPTION_IGNORED
WARN_PLUGIN_DELETE_BUILTIN
WARN_PLUGIN_BUSY
ER_VARIABLE_IS_READONLY
ER_WARN_ENGINE_TRANSACTION_ROLLBACK
ER_SLAVE_HEARTBEAT_FAILURE
ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE
ER_NDB_REPLICATION_SCHEMA_ERROR
ER_CONFLICT_FN_PARSE_ERROR
ER_EXCEPTIONS_WRITE_ERROR
ER_TOO_LONG_TABLE_COMMENT
ER_TOO_LONG_FIELD_COMMENT
ER_FUNC_INEXISTENT_NAME_COLLISION
ER_DATABASE_NAME
ER_TABLE_NAME
ER_PARTITION_NAME
ER_SUBPARTITION_NAME
ER_TEMPORARY_NAME
ER_RENAMED_NAME
ER_TOO_MANY_CONCURRENT_TRXS
WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED
ER_DEBUG_SYNC_TIMEOUT
ER_DEBUG_SYNC_HIT_LIMIT
ER_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION
Determines which column type (if any) should be read as a System.Guid.
Same as Char36 if OldGuids=False; same as LittleEndianBinary16 if OldGuids=True.
No column types are read/written as a Guid
.
All CHAR(36) columns are read/written as a Guid using lowercase hex with hyphens,
which matches UUID().
All CHAR(32) columns are read/written as a Guid using lowercase hex without hyphens.
All BINARY(16) columns are read/written as a Guid using big-endian byte order,
which matches UUID_TO_BIN(x).
All BINARY(16) columns are read/written as a Guid using big-endian byte order with time parts swapped,
which matches UUID_TO_BIN(x,1).
All BINARY(16) columns are read/written as a Guid using little-endian byte order, i.e. the byte order
used by and .
Escapes single and double quotes, and backslashes in .
Each new connection opened for a connection pool uses the next host name (sequentially with wraparound).
Each new connection tries to connect to the first host; subsequent hosts are used only if connecting to the first one fails.
Servers are tried in random order.
Servers are tried in ascending order of number of currently-open connections.
Gets or sets a value that indicates whether the bulk copy operation should be aborted.
Gets a value that returns the number of rows copied during the current bulk copy operation.
Represents the method that handles the event of a .
SSL connection options.
Do not use SSL.
Use SSL if the server supports it.
Always use SSL. Deny connection if server does not support SSL.
Always use SSL. Validate the Certificate Authority but tolerate name mismatch.
Always use SSL. Fail if the host name is not correct.
Represents MySQL's internal GEOMETRY format: https://dev.mysql.com/doc/refman/8.0/en/gis-data-formats.html#gis-internal-format
Constructs a from a SRID and Well-known Binary bytes.
The SRID (Spatial Reference System ID).
The Well-known Binary serialization of the geometry.
A new containing the specified geometry.
Constructs a from MySQL's internal format.
The raw bytes of MySQL's internal GEOMETRY format.
A new containing the specified geometry.
See Internal Geometry Storage Format.
The Spatial Reference System ID of this geometry.
The Well-known Binary serialization of this geometry.
The internal MySQL form of this geometry.