mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00

* Add support for microsecond precision of MSSQL date/time types in table editor, show these in "Length/Set" column * See http://www.heidisql.com/forum.php?t=17728
7378 lines
248 KiB
ObjectPascal
7378 lines
248 KiB
ObjectPascal
unit mysql_structures;
|
||
|
||
// -------------------------------------
|
||
// MySQL Constants, Variables and Types
|
||
// -------------------------------------
|
||
|
||
interface
|
||
|
||
uses
|
||
Classes, Graphics, Windows, SysUtils;
|
||
|
||
{$I const.inc}
|
||
|
||
type
|
||
PUSED_MEM=^USED_MEM;
|
||
USED_MEM = packed record
|
||
next: PUSED_MEM;
|
||
left: Integer;
|
||
size: Integer;
|
||
end;
|
||
|
||
PERR_PROC = ^ERR_PROC;
|
||
ERR_PROC = procedure;
|
||
|
||
PMEM_ROOT = ^MEM_ROOT;
|
||
MEM_ROOT = packed record
|
||
free: PUSED_MEM;
|
||
used: PUSED_MEM;
|
||
pre_alloc: PUSED_MEM;
|
||
min_malloc: Integer;
|
||
block_size: Integer;
|
||
block_num: Integer;
|
||
first_block_usage: Integer;
|
||
error_handler: PERR_PROC;
|
||
end;
|
||
|
||
NET = record
|
||
vio: Pointer;
|
||
buff: PAnsiChar;
|
||
buff_end: PAnsiChar;
|
||
write_pos: PAnsiChar;
|
||
read_pos: PAnsiChar;
|
||
fd: Integer;
|
||
max_packet: Cardinal;
|
||
max_packet_size: Cardinal;
|
||
pkt_nr: Cardinal;
|
||
compress_pkt_nr: Cardinal;
|
||
write_timeout: Cardinal;
|
||
read_timeout: Cardinal;
|
||
retry_count: Cardinal;
|
||
fcntl: Integer;
|
||
compress: Byte;
|
||
remain_in_buf: LongInt;
|
||
length: LongInt;
|
||
buf_length: LongInt;
|
||
where_b: LongInt;
|
||
return_status: Pointer;
|
||
reading_or_writing: Char;
|
||
save_char: Char;
|
||
no_send_ok: Byte;
|
||
last_error: array[1..MYSQL_ERRMSG_SIZE] of Char;
|
||
sqlstate: array[1..SQLSTATE_LENGTH + 1] of Char;
|
||
last_errno: Cardinal;
|
||
error: Char;
|
||
query_cache_query: Pointer;
|
||
report_error: Byte;
|
||
return_errno: Byte;
|
||
end;
|
||
|
||
PMYSQL_FIELD = ^MYSQL_FIELD;
|
||
MYSQL_FIELD = record
|
||
name: PAnsiChar; // Name of column
|
||
org_name: PAnsiChar; // Original column name, if an alias
|
||
table: PAnsiChar; // Table of column if column was a field
|
||
org_table: PAnsiChar; // Org table name if table was an alias
|
||
db: PAnsiChar; // Database for table
|
||
catalog: PAnsiChar; // Catalog for table
|
||
def: PAnsiChar; // Default value (set by mysql_list_fields)
|
||
length: LongInt; // Width of column
|
||
max_length: LongInt; // Max width of selected set
|
||
name_length: Cardinal;
|
||
org_name_length: Cardinal;
|
||
table_length: Cardinal;
|
||
org_table_length: Cardinal;
|
||
db_length: Cardinal;
|
||
catalog_length: Cardinal;
|
||
def_length: Cardinal;
|
||
flags: Cardinal; // Div flags
|
||
decimals: Cardinal; // Number of decimals in field
|
||
charsetnr: Cardinal; // Character set
|
||
_type: Cardinal; // Type of field. Se mysql_com.h for types
|
||
end;
|
||
|
||
MYSQL_ROW = array[0..$ffff] of PAnsiChar;
|
||
PMYSQL_ROW = ^MYSQL_ROW;
|
||
|
||
PMYSQL_ROWS = ^MYSQL_ROWS;
|
||
MYSQL_ROWS = record
|
||
next: PMYSQL_ROWS;
|
||
data: PMYSQL_ROW;
|
||
end;
|
||
|
||
MYSQL_DATA = record
|
||
Rows: Int64;
|
||
Fields: Cardinal;
|
||
Data: PMYSQL_ROWS;
|
||
Alloc: MEM_ROOT;
|
||
end;
|
||
PMYSQL_DATA = ^MYSQL_DATA;
|
||
|
||
PMYSQL = ^MYSQL;
|
||
MYSQL = record
|
||
_net: NET;
|
||
connector_fd: Pointer;
|
||
host: PAnsiChar;
|
||
user: PAnsiChar;
|
||
passwd: PAnsiChar;
|
||
unix_socket: PAnsiChar;
|
||
server_version: PAnsiChar;
|
||
host_info: PAnsiChar;
|
||
info: PAnsiChar;
|
||
db: PAnsiChar;
|
||
charset: PAnsiChar;
|
||
fields: PMYSQL_FIELD;
|
||
field_alloc: MEM_ROOT;
|
||
affected_rows: Int64;
|
||
insert_id: Int64;
|
||
extra_info: Int64;
|
||
thread_id: LongInt;
|
||
packet_length: LongInt;
|
||
port: Cardinal;
|
||
client_flag: LongInt;
|
||
server_capabilities: LongInt;
|
||
protocol_version: Cardinal;
|
||
field_count: Cardinal;
|
||
server_status: Cardinal;
|
||
server_language: Cardinal;
|
||
warning_count: Cardinal;
|
||
options: Cardinal;
|
||
status: Byte;
|
||
free_me: Byte;
|
||
reconnect: Byte;
|
||
scramble: array[1..SCRAMBLE_LENGTH+1] of Char;
|
||
rpl_pivot: Byte;
|
||
master: PMYSQL;
|
||
next_slave: PMYSQL;
|
||
last_used_slave: PMYSQL;
|
||
last_used_con: PMYSQL;
|
||
stmts: Pointer;
|
||
methods: Pointer;
|
||
thd: Pointer;
|
||
unbuffered_fetch_owner: PByte;
|
||
end;
|
||
|
||
MYSQL_RES = record
|
||
row_count: Int64;
|
||
fields: PMYSQL_FIELD;
|
||
data: PMYSQL_DATA;
|
||
data_cursor: PMYSQL_ROWS;
|
||
lengths: PLongInt;
|
||
handle: PMYSQL;
|
||
field_alloc: MEM_ROOT;
|
||
field_count: Integer;
|
||
current_field: Integer;
|
||
row: PMYSQL_ROW;
|
||
current_row: PMYSQL_ROW;
|
||
eof: Byte;
|
||
unbuffered_fetch_cancelled: Byte;
|
||
methods: PAnsiChar;
|
||
end;
|
||
PMYSQL_RES = ^MYSQL_RES;
|
||
|
||
TMySQLOption = (MYSQL_OPT_CONNECT_TIMEOUT, MYSQL_OPT_COMPRESS, MYSQL_OPT_NAMED_PIPE,
|
||
MYSQL_INIT_COMMAND, MYSQL_READ_DEFAULT_FILE, MYSQL_READ_DEFAULT_GROUP,
|
||
MYSQL_SET_CHARSET_DIR, MYSQL_SET_CHARSET_NAME, MYSQL_OPT_LOCAL_INFILE,
|
||
MYSQL_OPT_PROTOCOL, MYSQL_SHARED_MEMORY_BASE_NAME, MYSQL_OPT_READ_TIMEOUT,
|
||
MYSQL_OPT_WRITE_TIMEOUT, MYSQL_OPT_USE_RESULT,
|
||
MYSQL_OPT_USE_REMOTE_CONNECTION, MYSQL_OPT_USE_EMBEDDED_CONNECTION,
|
||
MYSQL_OPT_GUESS_CONNECTION, MYSQL_SET_CLIENT_IP, MYSQL_SECURE_AUTH,
|
||
MYSQL_REPORT_DATA_TRUNCATION, MYSQL_OPT_RECONNECT,
|
||
MYSQL_OPT_SSL_VERIFY_SERVER_CERT, MYSQL_PLUGIN_DIR, MYSQL_DEFAULT_AUTH);
|
||
|
||
// MySQL data types
|
||
TDBDatatypeIndex = (dtTinyint, dtSmallint, dtMediumint, dtInt, dtBigint, dtSerial, dtBigSerial,
|
||
dtFloat, dtDouble, dtDecimal, dtNumeric, dtReal, dtDoublePrecision, dtMoney, dtSmallmoney,
|
||
dtDate, dtTime, dtYear, dtDatetime, dtDatetime2, dtSmalldatetime, dtTimestamp, dtInterval,
|
||
dtChar, dtNchar, dtVarchar, dtNvarchar, dtTinytext, dtText, dtNtext, dtMediumtext, dtLongtext,
|
||
dtBinary, dtVarbinary, dtTinyblob, dtBlob, dtMediumblob, dtLongblob, dtImage,
|
||
dtEnum, dtSet, dtBit, dtVarBit, dtBool, dtJson, dtUnknown,
|
||
dtCursor, dtSqlvariant, dtTable, dtUniqueidentifier, dtHierarchyid,
|
||
dtPoint, dtLinestring, dtLineSegment, dtPolygon, dtGeometry, dtBox, dtPath, dtCircle, dtMultipoint, dtMultilinestring, dtMultipolygon, dtGeometrycollection
|
||
);
|
||
|
||
// MySQL data type categorization
|
||
TDBDatatypeCategoryIndex = (dtcInteger, dtcReal, dtcText, dtcBinary, dtcTemporal, dtcSpatial, dtcOther);
|
||
|
||
// MySQL data type structure
|
||
TDBDatatype = record
|
||
Index: TDBDatatypeIndex;
|
||
NativeType: Cardinal; // See field types
|
||
NativeTypes: String; // Same as above, but for multiple postgresql oid's
|
||
Name: String;
|
||
Names: String;
|
||
Description: String;
|
||
HasLength: Boolean; // Can have Length- or Set-attribute?
|
||
RequiresLength: Boolean; // Must have a Length- or Set-attribute?
|
||
HasBinary: Boolean; // Can be binary?
|
||
HasDefault: Boolean; // Can have a default value?
|
||
DefLengthSet: String; // Should be set for types which require a length/set
|
||
Format: String; // Used for date/time values when displaying and generating queries
|
||
Category: TDBDatatypeCategoryIndex;
|
||
end;
|
||
|
||
// MySQL data type category structure
|
||
TDBDatatypeCategory = record
|
||
Index: TDBDatatypeCategoryIndex;
|
||
Name: String;
|
||
Color: TColor;
|
||
NullColor: TColor;
|
||
end;
|
||
|
||
// MySQL functions structure
|
||
TMySQLFunction = record
|
||
Name: String;
|
||
Declaration: String;
|
||
Category: String;
|
||
Version: Integer; // Minimum MySQL version where function is available
|
||
Description: String;
|
||
end;
|
||
|
||
// Server variables
|
||
TVarScope = (vsGlobal, vsSession, vsBoth);
|
||
TServerVariable = record
|
||
Name: String;
|
||
IsDynamic: Boolean;
|
||
VarScope: TVarScope;
|
||
EnumValues: String;
|
||
end;
|
||
|
||
var
|
||
MySQLKeywords: TStringList;
|
||
MySQLErrorCodes: TStringList;
|
||
|
||
// MySQL data type categories
|
||
DatatypeCategories: array[dtcInteger..dtcOther] of TDBDatatypeCategory = (
|
||
(
|
||
Index: dtcInteger;
|
||
Name: 'Integer'
|
||
),
|
||
(
|
||
Index: dtcReal;
|
||
Name: 'Real'
|
||
),
|
||
(
|
||
Index: dtcText;
|
||
Name: 'Text'
|
||
),
|
||
(
|
||
Index: dtcBinary;
|
||
Name: 'Binary'
|
||
),
|
||
(
|
||
Index: dtcTemporal;
|
||
Name: 'Temporal (time)'
|
||
),
|
||
(
|
||
Index: dtcSpatial;
|
||
Name: 'Spatial (geometry)'
|
||
),
|
||
(
|
||
Index: dtcOther;
|
||
Name: 'Other'
|
||
)
|
||
);
|
||
|
||
// MySQL Data Type List and Properties
|
||
MySQLDatatypes: array [0..35] of TDBDatatype =
|
||
(
|
||
(
|
||
Index: dtTinyint;
|
||
NativeType: FIELD_TYPE_TINY;
|
||
Name: 'TINYINT';
|
||
Description: 'TINYINT[(M)] [UNSIGNED] [ZEROFILL]' + CRLF +
|
||
'A very small integer. The signed range is -128 to 127. ' +
|
||
'The unsigned range is 0 to 255.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtSmallint;
|
||
NativeType: FIELD_TYPE_SHORT;
|
||
Name: 'SMALLINT';
|
||
Description: 'SMALLINT[(M)] [UNSIGNED] [ZEROFILL]' + CRLF +
|
||
'A small integer. The signed range is -32768 to 32767. ' +
|
||
'The unsigned range is 0 to 65535.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtMediumint;
|
||
NativeType: FIELD_TYPE_INT24;
|
||
Name: 'MEDIUMINT';
|
||
Description: 'MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL]' + CRLF +
|
||
'A medium-sized integer. The signed range is -8388608 to 8388607. ' +
|
||
'The unsigned range is 0 to 16777215.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtInt;
|
||
NativeType: FIELD_TYPE_LONG;
|
||
Name: 'INT';
|
||
Description: 'INT[(M)] [UNSIGNED] [ZEROFILL]' + CRLF +
|
||
'A normal-size integer. The signed range is -2147483648 to 2147483647. ' +
|
||
'The unsigned range is 0 to 4294967295.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtBigint;
|
||
NativeType: FIELD_TYPE_LONGLONG;
|
||
Name: 'BIGINT';
|
||
Description: 'BIGINT[(M)] [UNSIGNED] [ZEROFILL]' + CRLF +
|
||
'A large integer. The signed range is -9223372036854775808 to ' +
|
||
'9223372036854775807. The unsigned range is 0 to 18446744073709551615.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtFloat;
|
||
NativeType: FIELD_TYPE_FLOAT;
|
||
Name: 'FLOAT';
|
||
Description: 'FLOAT[(M,D)] [UNSIGNED] [ZEROFILL]' + CRLF +
|
||
'A small (single-precision) floating-point number. Allowable values are '+
|
||
'-3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to '+
|
||
'3.402823466E+38. These are the theoretical limits, based on the IEEE '+
|
||
'standard. The actual range might be slightly smaller depending on your '+
|
||
'hardware or operating system.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtDouble;
|
||
NativeType: FIELD_TYPE_DOUBLE;
|
||
Name: 'DOUBLE';
|
||
Description: 'DOUBLE[(M,D)] [UNSIGNED] [ZEROFILL]' + CRLF +
|
||
'A normal-size (double-precision) floating-point number. Allowable ' +
|
||
'values are -1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and ' +
|
||
'2.2250738585072014E-308 to 1.7976931348623157E+308. These are the ' +
|
||
'theoretical limits, based on the IEEE standard. The actual range might ' +
|
||
'be slightly smaller depending on your hardware or operating system.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtDecimal;
|
||
NativeType: FIELD_TYPE_NEWDECIMAL;
|
||
Name: 'DECIMAL';
|
||
Description: 'DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL]' + CRLF +
|
||
'A packed "exact" fixed-point number. M is the total number of digits ' +
|
||
'(the precision) and D is the number of digits after the decimal point ' +
|
||
'(the scale). The decimal point and (for negative numbers) the "-" sign ' +
|
||
'are not counted in M. If D is 0, values have no decimal point or ' +
|
||
'fractional part. The maximum number of digits (M) for DECIMAL is 65. ' +
|
||
'The maximum number of supported decimals (D) is 30. If D is omitted, ' +
|
||
'the default is 0. If M is omitted, the default is 10.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '10,0';
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtDate;
|
||
NativeType: FIELD_TYPE_DATE;
|
||
Name: 'DATE';
|
||
Description: 'DATE' + CRLF +
|
||
'A date. The supported range is ''1000-01-01'' to ''9999-12-31''. MySQL ' +
|
||
'displays DATE values in ''YYYY-MM-DD'' format, but allows assignment of ' +
|
||
'values to DATE columns using either strings or numbers.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Format: 'yyyy-mm-dd';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtTime;
|
||
NativeType: FIELD_TYPE_TIME;
|
||
Name: 'TIME';
|
||
Description: 'TIME' + CRLF +
|
||
'A time. The range is ''-838:59:59'' to ''838:59:59''. MySQL displays TIME ' +
|
||
'values in ''HH:MM:SS'' format, but allows assignment of values to TIME ' +
|
||
'columns using either strings or numbers.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Format: 'hh:nn:ss';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtYear;
|
||
NativeType: FIELD_TYPE_YEAR;
|
||
Name: 'YEAR';
|
||
Description: 'YEAR[(2|4)]' + CRLF +
|
||
'A year in two-digit or four-digit format. The default is four-digit ' +
|
||
'format. In four-digit format, the allowable values are 1901 to 2155, ' +
|
||
'and 0000. In two-digit format, the allowable values are 70 to 69, ' +
|
||
'representing years from 1970 to 2069. MySQL displays YEAR values in ' +
|
||
'YYYY format, but allows you to assign values to YEAR columns using ' +
|
||
'either strings or numbers.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Format: 'yyyy';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtDatetime;
|
||
NativeType: FIELD_TYPE_DATETIME;
|
||
Name: 'DATETIME';
|
||
Description: 'DATETIME' + CRLF +
|
||
'A date and time combination. The supported range is ''1000-01-01 ' +
|
||
'00:00:00'' to ''9999-12-31 23:59:59''. MySQL displays DATETIME values in ' +
|
||
'''YYYY-MM-DD HH:MM:SS'' format, but allows assignment of values to ' +
|
||
'DATETIME columns using either strings or numbers.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Format: 'yyyy-mm-dd hh:nn:ss';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtTimestamp;
|
||
NativeType: FIELD_TYPE_TIMESTAMP;
|
||
Name: 'TIMESTAMP';
|
||
Description: 'TIMESTAMP' + CRLF +
|
||
'A timestamp. The range is ''1970-01-01 00:00:01'' UTC to ''2038-01-09 ' +
|
||
'03:14:07'' UTC. TIMESTAMP values are stored as the number of seconds ' +
|
||
'since the epoch (''1970-01-01 00:00:00'' UTC). A TIMESTAMP cannot ' +
|
||
'represent the value ''1970-01-01 00:00:00'' because that is equivalent to ' +
|
||
'0 seconds from the epoch and the value 0 is reserved for representing ' +
|
||
'''0000-00-00 00:00:00'', the "zero" TIMESTAMP value.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Format: 'yyyy-mm-dd hh:nn:ss';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtChar;
|
||
NativeType: FIELD_TYPE_STRING;
|
||
Name: 'CHAR';
|
||
Description: 'CHAR[(M)]' + CRLF +
|
||
'A fixed-length string that is always right-padded with spaces to the ' +
|
||
'specified length when stored. M represents the column length in ' +
|
||
'characters. The range of M is 0 to 255. If M is omitted, the length is 1.' + CRLF + CRLF +
|
||
'*Note*: Trailing spaces are removed when CHAR values are retrieved ' +
|
||
'unless the PAD_CHAR_TO_FULL_LENGTH SQL mode is enabled.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: True;
|
||
HasDefault: True;
|
||
DefLengthSet: '50';
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtVarchar;
|
||
NativeType: FIELD_TYPE_VAR_STRING;
|
||
Name: 'VARCHAR';
|
||
Description: 'VARCHAR(M)' + CRLF +
|
||
'A variable-length string. M represents the maximum column length in ' +
|
||
'characters. The range of M is 0 to 65,535. The effective maximum length ' +
|
||
'of a VARCHAR is subject to the maximum row size (65,535 bytes, which is ' +
|
||
'shared among all columns) and the character set used. For example, utf8 ' +
|
||
'characters can require up to three bytes per character, so a VARCHAR ' +
|
||
'column that uses the utf8 character set can be declared to be a maximum ' +
|
||
'of 21,844 characters. ' + CRLF + CRLF +
|
||
'*Note*: MySQL 5.1 follows the standard SQL specification, and does not ' +
|
||
'remove trailing spaces from VARCHAR values.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: True; // MySQL-Help says the opposite but it's valid for older versions at least.
|
||
HasDefault: True;
|
||
DefLengthSet: '50';
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtTinytext;
|
||
NativeType: FIELD_TYPE_TINY_BLOB;
|
||
Name: 'TINYTEXT';
|
||
Description: 'TINYTEXT' + CRLF +
|
||
'A TEXT column with a maximum length of 255 (28 - 1) characters. The ' +
|
||
'effective maximum length is less if the value contains multi-byte ' +
|
||
'characters. Each TINYTEXT value is stored using a one-byte length ' +
|
||
'prefix that indicates the number of bytes in the value.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: True;
|
||
HasDefault: False;
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtText;
|
||
NativeType: FIELD_TYPE_BLOB;
|
||
Name: 'TEXT';
|
||
Description: 'TEXT[(M)]' + CRLF +
|
||
'A TEXT column with a maximum length of 65,535 (216 - 1) characters. The ' +
|
||
'effective maximum length is less if the value contains multi-byte ' +
|
||
'characters. Each TEXT value is stored using a two-byte length prefix ' +
|
||
'that indicates the number of bytes in the value. ' + CRLF +
|
||
'An optional length M can be given for this type. If this is done, MySQL ' +
|
||
'creates the column as the smallest TEXT type large enough to hold ' +
|
||
'values M characters long.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: True;
|
||
HasDefault: False;
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtMediumtext;
|
||
NativeType: FIELD_TYPE_MEDIUM_BLOB;
|
||
Name: 'MEDIUMTEXT';
|
||
Description: 'MEDIUMTEXT' + CRLF +
|
||
'A TEXT column with a maximum length of 16,777,215 (224 - 1) characters. ' +
|
||
'The effective maximum length is less if the value contains multi-byte ' +
|
||
'characters. Each MEDIUMTEXT value is stored using a three-byte length ' +
|
||
'prefix that indicates the number of bytes in the value.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: True;
|
||
HasDefault: False;
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtLongtext;
|
||
NativeType: FIELD_TYPE_LONG_BLOB;
|
||
Name: 'LONGTEXT';
|
||
Description: 'LONGTEXT' + CRLF +
|
||
'A TEXT column with a maximum length of 4,294,967,295 or 4GB (232 - 1) ' +
|
||
'characters. The effective maximum length is less if the value contains ' +
|
||
'multi-byte characters. The effective maximum length of LONGTEXT columns ' +
|
||
'also depends on the configured maximum packet size in the client/server ' +
|
||
'protocol and available memory. Each LONGTEXT value is stored using a ' +
|
||
'four-byte length prefix that indicates the number of bytes in the ' +
|
||
'value.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: True;
|
||
HasDefault: False;
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtBinary;
|
||
NativeType: FIELD_TYPE_STRING;
|
||
Name: 'BINARY';
|
||
Description: 'BINARY(M)' + CRLF +
|
||
'The BINARY type is similar to the CHAR type, but stores binary byte ' +
|
||
'strings rather than non-binary character strings. M represents the ' +
|
||
'column length in bytes.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '50';
|
||
Category: dtcBinary;
|
||
),
|
||
(
|
||
Index: dtVarbinary;
|
||
NativeType: FIELD_TYPE_VAR_STRING;
|
||
Name: 'VARBINARY';
|
||
Description: 'VARBINARY(M)' + CRLF +
|
||
'The VARBINARY type is similar to the VARCHAR type, but stores binary ' +
|
||
'byte strings rather than non-binary character strings. M represents the ' +
|
||
'maximum column length in bytes.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '50';
|
||
Category: dtcBinary;
|
||
),
|
||
(
|
||
Index: dtTinyblob;
|
||
NativeType: FIELD_TYPE_TINY_BLOB;
|
||
Name: 'TINYBLOB';
|
||
Description: 'TINYBLOB' + CRLF +
|
||
'A BLOB column with a maximum length of 255 (28 - 1) bytes. Each ' +
|
||
'TINYBLOB value is stored using a one-byte length prefix that indicates ' +
|
||
'the number of bytes in the value.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcBinary;
|
||
),
|
||
(
|
||
Index: dtBlob;
|
||
NativeType: FIELD_TYPE_BLOB;
|
||
Name: 'BLOB';
|
||
Description: 'BLOB[(M)]' + CRLF +
|
||
'A BLOB column with a maximum length of 65,535 (216 - 1) bytes. Each ' +
|
||
'BLOB value is stored using a two-byte length prefix that indicates the ' +
|
||
'number of bytes in the value. ' + CRLF +
|
||
'An optional length M can be given for this type. If this is done, MySQL ' +
|
||
'creates the column as the smallest BLOB type large enough to hold ' +
|
||
'values M bytes long.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcBinary;
|
||
),
|
||
(
|
||
Index: dtMediumblob;
|
||
NativeType: FIELD_TYPE_MEDIUM_BLOB;
|
||
Name: 'MEDIUMBLOB';
|
||
Description: 'MEDIUMBLOB' + CRLF +
|
||
'A BLOB column with a maximum length of 16,777,215 (224 - 1) bytes. Each ' +
|
||
'MEDIUMBLOB value is stored using a three-byte length prefix that ' +
|
||
'indicates the number of bytes in the value.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcBinary;
|
||
),
|
||
(
|
||
Index: dtLongblob;
|
||
NativeType: FIELD_TYPE_LONG_BLOB;
|
||
Name: 'LONGBLOB';
|
||
Description: 'LONGBLOB' + CRLF +
|
||
'A BLOB column with a maximum length of 4,294,967,295 or 4GB (232 - 1) ' +
|
||
'bytes. The effective maximum length of LONGBLOB columns depends on the ' +
|
||
'configured maximum packet size in the client/server protocol and ' +
|
||
'available memory. Each LONGBLOB value is stored using a four-byte ' +
|
||
'length prefix that indicates the number of bytes in the value.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcBinary;
|
||
),
|
||
(
|
||
Index: dtEnum;
|
||
NativeType: FIELD_TYPE_ENUM;
|
||
Name: 'ENUM';
|
||
Description: 'ENUM(''value1'',''value2'',...)' + CRLF +
|
||
'An enumeration. A string object that can have only one value, chosen ' +
|
||
'from the list of values ''value1'', ''value2'', ..., NULL or the special '''' ' +
|
||
'error value. An ENUM column can have a maximum of 65,535 distinct ' +
|
||
'values. ENUM values are represented internally as integers.';
|
||
HasLength: True; // Obviously this is not meant as "length", but as "set of values"
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '''Y'',''N''';
|
||
Category: dtcOther;
|
||
),
|
||
(
|
||
Index: dtSet;
|
||
NativeType: FIELD_TYPE_SET;
|
||
Name: 'SET';
|
||
Description: 'SET(''value1'',''value2'',...)' + CRLF +
|
||
'A set. A string object that can have zero or more values, each of which ' +
|
||
'must be chosen from the list of values ''value1'', ''value2'', ... A SET ' +
|
||
'column can have a maximum of 64 members. SET values are represented ' +
|
||
'internally as integers.';
|
||
HasLength: True; // Same as for ENUM
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '''Value A'',''Value B''';
|
||
Category: dtcOther;
|
||
),
|
||
(
|
||
Index: dtBit;
|
||
NativeType: FIELD_TYPE_BIT;
|
||
Name: 'BIT';
|
||
Description: 'BIT[(M)]' + CRLF +
|
||
'A bit-field type. M indicates the number of bits per value, from 1 to ' +
|
||
'64. The default is 1 if M is omitted.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtPoint;
|
||
NativeType: FIELD_TYPE_GEOMETRY;
|
||
Name: 'POINT';
|
||
Description: 'POINT(x,y)' + CRLF +
|
||
'Constructs a WKB Point using its coordinates.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtLinestring;
|
||
NativeType: FIELD_TYPE_GEOMETRY;
|
||
Name: 'LINESTRING';
|
||
Description: 'LINESTRING(pt1,pt2,...)' + CRLF +
|
||
'Constructs a WKB LineString value from a number of WKB Point arguments. ' +
|
||
'If any argument is not a WKB Point, the return value is NULL. If the ' +
|
||
'number of Point arguments is less than two, the return value is NULL.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtPolygon;
|
||
NativeType: FIELD_TYPE_GEOMETRY;
|
||
Name: 'POLYGON';
|
||
Description: 'POLYGON(ls1,ls2,...)' + CRLF +
|
||
'Constructs a WKB Polygon value from a number of WKB LineString ' +
|
||
'arguments. If any argument does not represent the WKB of a LinearRing ' +
|
||
'(that is, not a closed and simple LineString) the return value is NULL.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtGeometry;
|
||
NativeType: FIELD_TYPE_GEOMETRY;
|
||
Name: 'GEOMETRY';
|
||
Description: '';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtMultipoint;
|
||
NativeType: FIELD_TYPE_GEOMETRY;
|
||
Name: 'MULTIPOINT';
|
||
Description: 'MULTIPOINT(pt1,pt2,...)' + CRLF +
|
||
'Constructs a WKB MultiPoint value using WKB Point arguments. If any ' +
|
||
'argument is not a WKB Point, the return value is NULL.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtMultilinestring;
|
||
NativeType: FIELD_TYPE_GEOMETRY;
|
||
Name: 'MULTILINESTRING';
|
||
Description: 'MULTILINESTRING(ls1,ls2,...)' + CRLF +
|
||
'Constructs a WKB MultiLineString value using WKB LineString arguments. ' +
|
||
'If any argument is not a WKB LineString, the return value is NULL.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtMultipolygon;
|
||
NativeType: FIELD_TYPE_GEOMETRY;
|
||
Name: 'MULTIPOLYGON';
|
||
Description: 'MULTIPOLYGON(poly1,poly2,...)' + CRLF +
|
||
'Constructs a WKB MultiPolygon value from a set of WKB Polygon ' +
|
||
'arguments. If any argument is not a WKB Polygon, the return value is ' +
|
||
'NULL.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtGeometrycollection;
|
||
NativeType: FIELD_TYPE_GEOMETRY;
|
||
Name: 'GEOMETRYCOLLECTION';
|
||
Description: 'GEOMETRYCOLLECTION(g1,g2,...)' + CRLF +
|
||
'Constructs a WKB GeometryCollection. If any argument is not a ' +
|
||
'well-formed WKB representation of a geometry, the return value is NULL.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
)
|
||
|
||
);
|
||
|
||
MSSQLDatatypes: array [0..30] of TDBDatatype =
|
||
(
|
||
(
|
||
Index: dtTinyint;
|
||
Name: 'TINYINT';
|
||
Description: 'Integer data from 0 through 255.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtSmallint;
|
||
Name: 'SMALLINT';
|
||
Description: 'Integer data from -2^15 (-32,768) through 2^15 - 1 (32,767).';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtInt;
|
||
Name: 'INT';
|
||
Description: 'Integer (whole number) data from -2^31 (-2,147,483,648) through 2^31 - 1 (2,147,483,647).';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtBigint;
|
||
Name: 'BIGINT';
|
||
Description: 'Integer (whole number) data from -2^63 (-9,223,372,036,854,775,808) through 2^63-1 (9,223,372,036,854,775,807).';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtBit;
|
||
Name: 'BIT';
|
||
Description: '0 or 1';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtDecimal;
|
||
Name: 'DECIMAL';
|
||
Description: 'Fixed precision and scale numeric data from -10^38 +1 through 10^38 <20>1.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '10,0';
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtNumeric;
|
||
Name: 'NUMERIC';
|
||
Description: 'Functionally equivalent to decimal.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '10,0';
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtMoney;
|
||
Name: 'MONEY';
|
||
Description: 'Monetary data values from -2^63 (-922,337,203,685,477.5808) through 2^63 - 1 (+922,337,203,685,477.5807), with accuracy to a ten-thousandth of a monetary unit.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtSmallmoney;
|
||
Name: 'SMALLMONEY';
|
||
Description: 'Monetary data values from -214,748.3648 through +214,748.3647, with accuracy to a ten-thousandth of a monetary unit.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtFloat;
|
||
Name: 'FLOAT';
|
||
Description: 'Floating precision number data with the following valid values: -1.79E + 308 through -2.23E - 308, 0 and 2.23E + 308 through 1.79E + 308.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtReal;
|
||
Name: 'REAL';
|
||
Description: 'Floating precision number data with the following valid values: -3.40E + 38 through -1.18E - 38, 0 and 1.18E - 38 through 3.40E + 38.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtTime;
|
||
Name: 'TIME';
|
||
Description: 'The time data type stores time values only, based on a 24-hour clock. '+
|
||
'The time data type has a range of 00:00:00.0000000 through 23:59:59.9999999 with an '+
|
||
'accuracy of 100 nanoseconds. The default value is 00:00:00.0000000 (midnight). The '+
|
||
'time data type supports user-defined fractional second precision, and the storage '+
|
||
'size varies from 3 to 6 bytes, based on the precision specified.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Format: 'hh:nn:ss';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtDate;
|
||
Name: 'DATE';
|
||
Description: 'The date data type has a range of January 1, 01 through December 31, '+
|
||
'9999 with an accuracy of 1 day. The default value is January 1, 1900. The storage size '+
|
||
'is 3 bytes.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Format: 'yyyy-mm-dd';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtDatetime;
|
||
Name: 'DATETIME';
|
||
Description: 'Date and time data from January 1, 1753, through December 31, 9999, with an accuracy of three-hundredths of a second, or 3.33 milliseconds.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Format: 'yyyy-mm-dd hh:nn:ss.zzz';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtDatetime2;
|
||
Name: 'DATETIME2';
|
||
Description: 'Date and time data from January 1,1 AD through December 31, 9999 AD, with an accuracy of three-hundredths of a second, or 3.33 milliseconds.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Format: 'yyyy-mm-dd hh:nn:ss.zzzzzzz';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtSmalldatetime;
|
||
Name: 'SMALLDATETIME';
|
||
Description: 'Date and time data from January 1, 1900, through June 6, 2079, with an accuracy of one minute.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Format: 'yyyy-mm-dd hh:nn:ss';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtTimestamp;
|
||
Name: 'TIMESTAMP';
|
||
Description: 'A database-wide unique number that gets updated every time a row gets updated.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtChar;
|
||
Name: 'CHAR';
|
||
Description: 'Fixed-length non-Unicode character data with a maximum length of 8,000 characters.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '50';
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtVarchar;
|
||
Name: 'VARCHAR';
|
||
Description: 'Variable-length non-Unicode data with a maximum of 8,000 characters.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '50';
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtText;
|
||
Name: 'TEXT';
|
||
Description: 'Variable-length non-Unicode data with a maximum length of 2^31 - 1 (2,147,483,647) characters.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtNchar;
|
||
Name: 'NCHAR';
|
||
Description: 'Fixed-length Unicode data with a maximum length of 4,000 characters.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '50';
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtNvarchar;
|
||
Name: 'NVARCHAR';
|
||
Description: 'Variable-length Unicode data with a maximum length of 4,000 characters. sysname is a system-supplied user-defined data type that is functionally equivalent to nvarchar(128) and is used to reference database object names.';
|
||
HasLength: True;
|
||
RequiresLength: True;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
DefLengthSet: '50';
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtNtext;
|
||
Name: 'NTEXT';
|
||
Description: 'Variable-length Unicode data with a maximum length of 2^30 - 1 (1,073,741,823) characters.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtBinary;
|
||
Name: 'BINARY';
|
||
Description: 'Fixed-length binary data with a maximum length of 8,000 bytes.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcBinary;
|
||
),
|
||
(
|
||
Index: dtVarbinary;
|
||
Name: 'VARBINARY';
|
||
Description: 'Variable-length binary data with a maximum length of 8,000 bytes.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcBinary;
|
||
),
|
||
(
|
||
Index: dtImage;
|
||
Name: 'IMAGE';
|
||
Description: 'Variable-length binary data with a maximum length of 2^31 - 1 (2,147,483,647) bytes.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcBinary;
|
||
),
|
||
(
|
||
Index: dtCursor;
|
||
Name: 'CURSOR';
|
||
Description: 'A reference to a cursor.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcOther;
|
||
),
|
||
(
|
||
Index: dtSqlvariant;
|
||
Name: 'SQL_VARIANT';
|
||
Description: 'A data type that stores values of various SQL Server-supported data types, except text, ntext, timestamp, and sql_variant.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcOther;
|
||
),
|
||
(
|
||
Index: dtTable;
|
||
Name: 'TABLE';
|
||
Description: 'A special data type used to store a result set for later processing .';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcOther;
|
||
),
|
||
(
|
||
Index: dtUniqueidentifier;
|
||
Name: 'UNIQUEIDENTIFIER';
|
||
Description: 'A globally unique identifier (GUID).';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcOther;
|
||
),
|
||
(
|
||
Index: dtHierarchyid;
|
||
Name: 'HIERARCHYID';
|
||
Description: 'Represents a position in a hierarchy.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcOther;
|
||
)
|
||
);
|
||
|
||
PostgreSQLDatatypes: Array[0..29] of TDBDatatype =
|
||
(
|
||
(
|
||
Index: dtUnknown;
|
||
NativeTypes: '99999';
|
||
Name: 'UNKNOWN';
|
||
Description: 'Unknown data type';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcOther;
|
||
),
|
||
(
|
||
Index: dtSmallint;
|
||
NativeTypes: '21';
|
||
Name: 'SMALLINT';
|
||
Names: 'smallint|int2';
|
||
Description: 'Small-range integer. Range: -32768 to +32767. Storage Size: 2 Bytes.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtInt;
|
||
// 26 = oid, 28 = xid
|
||
NativeTypes: '23|26|28';
|
||
Name: 'INTEGER';
|
||
Names: 'integer|int4|int|oid|xid';
|
||
Description: 'Typical choice for integer. Range: -2147483648 to +2147483647. Storage Size: 4 Bytes.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtBigint;
|
||
NativeTypes: '20';
|
||
Name: 'BIGINT';
|
||
Names: 'bigint|int8';
|
||
Description: 'Large-range integer. Range: -9223372036854775808 to 9223372036854775807. Storage Size: 8 Bytes.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtSerial;
|
||
Name: 'SERIAL';
|
||
Names: 'serial|serial4';
|
||
Description: 'Autoincrementing integer. Range: 1 to 2147483647. Storage Size: 4 Bytes.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtBigSerial;
|
||
Name: 'BIGSERIAL';
|
||
Names: 'bigserial|serial8';
|
||
Description: 'Large autoincrementing integer. Range: 1 to 9223372036854775807. Storage Size: 8 Bytes.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtVarBit;
|
||
NativeTypes: '1562';
|
||
Name: 'BIT VARYING';
|
||
Names: 'bit varying|varbit';
|
||
Description: 'Variable-length bit string.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtBit;
|
||
NativeTypes: '1560';
|
||
Name: 'BIT';
|
||
Names: 'bit';
|
||
Description: 'Fixed-length bit string.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: True;
|
||
Category: dtcInteger;
|
||
),
|
||
(
|
||
Index: dtNumeric;
|
||
NativeTypes: '1700';
|
||
Name: 'NUMERIC';
|
||
Names: 'numeric|float8|decimal';
|
||
Description: 'User-specified precision, exact. Range: no limit. Storage Size: variable.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtReal;
|
||
NativeTypes: '700';
|
||
Name: 'REAL';
|
||
Names: 'real|float4';
|
||
Description: 'Variable-precision, inexact. Range: 6 decimal digits precision. Storage Size: 4 Bytes.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtDoublePrecision;
|
||
NativeTypes: '701|1700';
|
||
Name: 'DOUBLE PRECISION';
|
||
Names: 'double precision|float8';
|
||
Description: 'Variable-precision, inexact. Range: 15 decimal digits precision. Storage Size: 8 Bytes.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtMoney;
|
||
NativeTypes: '790';
|
||
Name: 'MONEY';
|
||
Description: 'Currency amount. Range: -92233720368547758.08 to +92233720368547758.07. Storage Size: 8 Bytes.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcReal;
|
||
),
|
||
(
|
||
Index: dtChar;
|
||
NativeTypes: '18|1042';
|
||
Name: 'CHAR';
|
||
Names: 'CHARACTER';
|
||
Description: 'Fixed-length, blank padded.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtVarchar;
|
||
NativeTypes: '18|19|24|1043|1043|650|869|829';
|
||
Name: 'VARCHAR';
|
||
Names: 'char|bpchar|varchar|name|enum|cidr|inet|macaddr|regproc|character varying';
|
||
Description: 'Variable-length with limit.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtText;
|
||
NativeTypes: '25|22|30|143|629|651|719|791|1000|1028|1040|1041|1115|1182|1183|1185|1187|1231|1263|1270|1561|1563|2201|2207|2211|2949|2951|3643|3644|3645|3735|3770';
|
||
Name: 'TEXT';
|
||
Names: 'text|int2vector|oidvector|bool';
|
||
Description: 'Variable unlimited length.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcText;
|
||
),
|
||
(
|
||
Index: dtDate;
|
||
NativeTypes: '1082';
|
||
Name: 'DATE';
|
||
Description: 'Calendar date (year, month, day).';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Format: 'yyyy-mm-dd';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtTime;
|
||
NativeTypes: '1083';
|
||
Name: 'TIME';
|
||
Description: 'Time of day.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Format: 'hh:nn:ss';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtDatetime;
|
||
NativeTypes: '1082|1114|1184|702';
|
||
Name: 'TIMESTAMP';
|
||
Names: 'timestamp|datetime|timestamptz|abstime';
|
||
Description: 'Date and time.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Format: 'yyyy-mm-dd hh:nn:ss';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtDate;
|
||
NativeTypes: '1082';
|
||
Name: 'DATE';
|
||
Description: 'Calendar date (year, month, day).';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Format: 'yyyy-mm-dd';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtInterval;
|
||
NativeTypes: '1186';
|
||
Name: 'INTERVAL';
|
||
Description: 'time interval from -178000000 years to 178000000 years';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Format: 'yyyy-mm-dd hh:nn:ss';
|
||
Category: dtcTemporal;
|
||
),
|
||
(
|
||
Index: dtBlob;
|
||
NativeTypes: '17';
|
||
Name: 'BYTEA';
|
||
Description: 'Binary data ("byte array").';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcBinary;
|
||
),
|
||
(
|
||
Index: dtPoint;
|
||
NativeTypes: '600';
|
||
Name: 'POINT';
|
||
Description: 'Point on a plane (x,y). Storage size: 16 bytes.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtLinestring;
|
||
NativeTypes: '628';
|
||
Name: 'LINE';
|
||
Description: 'Infinite line ((x1,y1),(x2,y2)). Storage size: 32 bytes.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtLineSegment;
|
||
NativeTypes: '601';
|
||
Name: 'LSEG';
|
||
Description: 'Finite line segment ((x1,y1),(x2,y2)). Storage size: 32 bytes.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtBox;
|
||
NativeTypes: '603';
|
||
Name: 'BOX';
|
||
Description: 'Rectangular box ((x1,y1),(x2,y2)). Storage size: 32 bytes.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtPath;
|
||
NativeTypes: '602';
|
||
Name: 'PATH';
|
||
Description: 'Closed path (similar to polygon) ((x1,y1),...). Storage size: 16+16n bytes.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtPolygon;
|
||
NativeTypes: '604';
|
||
Name: 'POLYGON';
|
||
Description: 'Closed path (similar to polygon) ((x1,y1),...). Storage size: 40+16n bytes.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtCircle;
|
||
NativeTypes: '718';
|
||
Name: 'CIRCLE';
|
||
Description: 'Circle <(x,y),r> (center point and radius). Storage size: 24 bytes.';
|
||
HasLength: True;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcSpatial;
|
||
),
|
||
(
|
||
Index: dtBool;
|
||
NativeTypes: '16';
|
||
Name: 'BOOLEAN';
|
||
Names: 'boolean|bool';
|
||
Description: 'State of true or false. Storage size: 1 byte.';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcOther;
|
||
),
|
||
(
|
||
Index: dtJson;
|
||
NativeTypes: '114';
|
||
Name: 'JSON';
|
||
Names: 'json';
|
||
Description: 'JavaScript Object Notation data';
|
||
HasLength: False;
|
||
RequiresLength: False;
|
||
HasBinary: False;
|
||
HasDefault: False;
|
||
Category: dtcOther;
|
||
)
|
||
);
|
||
|
||
MySqlFunctions: Array [0..300] of TMysqlFunction =
|
||
(
|
||
// Function nr. 1
|
||
(
|
||
Name: '!';
|
||
Declaration: '';
|
||
Category: 'Logical operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Logical NOT. Evaluates to 1 if the operand is 0, to 0 if the operand '
|
||
+'is nonzero, and NOT NULL returns NULL.'
|
||
),
|
||
|
||
// Function nr. 2
|
||
(
|
||
Name: '!=';
|
||
Declaration: '';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Not equal:'
|
||
),
|
||
|
||
// Function nr. 3
|
||
(
|
||
Name: '&&';
|
||
Declaration: '';
|
||
Category: 'Logical operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Logical AND. Evaluates to 1 if all operands are nonzero and not NULL, '
|
||
+'to 0 if one or more operands are 0, otherwise NULL is returned.'
|
||
),
|
||
|
||
// Function nr. 4
|
||
(
|
||
Name: '&';
|
||
Declaration: '';
|
||
Category: 'Bit Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Bitwise AND:'
|
||
),
|
||
|
||
// Function nr. 5
|
||
(
|
||
Name: '*';
|
||
Declaration: '';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Multiplication:'
|
||
),
|
||
|
||
// Function nr. 6
|
||
(
|
||
Name: '+';
|
||
Declaration: '';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Addition:'
|
||
),
|
||
|
||
// Function nr. 7
|
||
(
|
||
Name: '-';
|
||
Declaration: '';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Subtraction:'
|
||
),
|
||
|
||
// Function nr. 8
|
||
(
|
||
Name: '/';
|
||
Declaration: '';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Division:'
|
||
),
|
||
|
||
// Function nr. 9
|
||
(
|
||
Name: '<';
|
||
Declaration: '';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Less than:'
|
||
),
|
||
|
||
// Function nr. 10
|
||
(
|
||
Name: '<<';
|
||
Declaration: '';
|
||
Category: 'Bit Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Shifts a longlong (BIGINT) number to the left.'
|
||
),
|
||
|
||
// Function nr. 11
|
||
(
|
||
Name: '<=';
|
||
Declaration: '';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Less than or equal:'
|
||
),
|
||
|
||
// Function nr. 12
|
||
(
|
||
Name: '<=>';
|
||
Declaration: '';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'NULL-safe equal. This operator performs an equality comparison like '
|
||
+'the = operator, but returns 1 rather than NULL if both operands are '
|
||
+'NULL, and 0 rather than NULL if one operand is NULL.'
|
||
),
|
||
|
||
// Function nr. 13
|
||
(
|
||
Name: '=';
|
||
Declaration: '';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Equal:'
|
||
),
|
||
|
||
// Function nr. 14
|
||
(
|
||
Name: '>';
|
||
Declaration: '';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Greater than:'
|
||
),
|
||
|
||
// Function nr. 15
|
||
(
|
||
Name: '>=';
|
||
Declaration: '';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Greater than or equal:'
|
||
),
|
||
|
||
// Function nr. 16
|
||
(
|
||
Name: '>>';
|
||
Declaration: '';
|
||
Category: 'Bit Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Shifts a longlong (BIGINT) number to the right.'
|
||
),
|
||
|
||
// Function nr. 17
|
||
(
|
||
Name: 'ABS';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the absolute value of X.'
|
||
),
|
||
|
||
// Function nr. 18
|
||
(
|
||
Name: 'ACOS';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the arc cosine of X, that is, the value whose cosine is X. '
|
||
+'Returns NULL if X is not in the range -1 to 1.'
|
||
),
|
||
|
||
// Function nr. 19
|
||
(
|
||
Name: 'ADDDATE';
|
||
Declaration: '(date,INTERVAL expr unit)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'When invoked with the INTERVAL form of the second argument, ADDDATE() '
|
||
+'is a synonym for DATE_ADD(). The related function SUBDATE() is a '
|
||
+'synonym for DATE_SUB(). For information on the INTERVAL unit argument, '
|
||
+'see the discussion for DATE_ADD(). mysql> SELECT '
|
||
+'DATE_ADD(''2008-01-02'', INTERVAL 31 DAY); -> ''2008-02-02'' mysql> '
|
||
+'SELECT ADDDATE(''2008-01-02'', INTERVAL 31 DAY); -> ''2008-02-02'' '
|
||
+'When invoked with the days form of the second argument, MySQL treats '
|
||
+'it as an integer number of days to be added to expr.'
|
||
),
|
||
|
||
// Function nr. 20
|
||
(
|
||
Name: 'ADDTIME';
|
||
Declaration: '(expr1,expr2)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'ADDTIME() adds expr2 to expr1 and returns the result. expr1 is a time '
|
||
+'or datetime expression, and expr2 is a time expression.'
|
||
),
|
||
|
||
// Function nr. 21
|
||
(
|
||
Name: 'AES_DECRYPT';
|
||
Declaration: '(crypt_str,key_str)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This function allows decryption of data using the official AES '
|
||
+'(Advanced Encryption Standard) algorithm. For more information, see '
|
||
+'the description of AES_ENCRYPT().'
|
||
),
|
||
|
||
// Function nr. 22
|
||
(
|
||
Name: 'AES_ENCRYPT';
|
||
Declaration: '(str,key_str)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'AES_ENCRYPT() and AES_DECRYPT() allow encryption and decryption of '
|
||
+'data using the official AES (Advanced Encryption Standard) algorithm, '
|
||
+'previously known as "Rijndael." Encoding with a 128-bit key length is '
|
||
+'used, but you can extend it up to 256 bits by modifying the source. We '
|
||
+'chose 128 bits because it is much faster and it is secure enough for '
|
||
+'most purposes. AES_ENCRYPT() encrypts a string and returns a binary '
|
||
+'string. AES_DECRYPT() decrypts the encrypted string and returns the '
|
||
+'original string. The input arguments may be any length. If either '
|
||
+'argument is NULL, the result of this function is also NULL. Because '
|
||
+'AES is a block-level algorithm, padding is used to encode uneven '
|
||
+'length strings and so the result string length may be calculated using '
|
||
+'this formula: 16 x (trunc(string_length / 16) + 1) If AES_DECRYPT() '
|
||
+'detects invalid data or incorrect padding, it returns NULL. However, '
|
||
+'it is possible for AES_DECRYPT() to return a non-NULL value (possibly '
|
||
+'garbage) if the input data or the key is invalid. You can use the AES '
|
||
+'functions to store data in an encrypted form by modifying your '
|
||
+'queries:'
|
||
),
|
||
|
||
// Function nr. 23
|
||
(
|
||
Name: 'AREA';
|
||
Declaration: '(poly)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns as a double-precision number the area of the Polygon value '
|
||
+'poly, as measured in its spatial reference system.'
|
||
),
|
||
|
||
// Function nr. 24
|
||
(
|
||
Name: 'ASBINARY';
|
||
Declaration: '(g)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Converts a value in internal geometry format to its WKB representation '
|
||
+'and returns the binary result.'
|
||
),
|
||
|
||
// Function nr. 25
|
||
(
|
||
Name: 'ASCII';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the numeric value of the leftmost character of the string str. '
|
||
+'Returns 0 if str is the empty string. Returns NULL if str is NULL. '
|
||
+'ASCII() works for 8-bit characters.'
|
||
),
|
||
|
||
// Function nr. 26
|
||
(
|
||
Name: 'ASIN';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the arc sine of X, that is, the value whose sine is X. Returns '
|
||
+'NULL if X is not in the range -1 to 1.'
|
||
),
|
||
|
||
// Function nr. 27
|
||
(
|
||
Name: 'ASTEXT';
|
||
Declaration: '(g)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Converts a value in internal geometry format to its WKT representation '
|
||
+'and returns the string result.'
|
||
),
|
||
|
||
// Function nr. 28
|
||
(
|
||
Name: 'ATAN';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the arc tangent of X, that is, the value whose tangent is X.'
|
||
),
|
||
|
||
// Function nr. 29
|
||
(
|
||
Name: 'ATAN2';
|
||
Declaration: '(Y,X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the arc tangent of the two variables X and Y. It is similar to '
|
||
+'calculating the arc tangent of Y / X, except that the signs of both '
|
||
+'arguments are used to determine the quadrant of the result.'
|
||
),
|
||
|
||
// Function nr. 30
|
||
(
|
||
Name: 'AVG';
|
||
Declaration: '([DISTINCT] expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the average value of expr. The DISTINCT option can be used to '
|
||
+'return the average of the distinct values of expr. AVG() returns NULL '
|
||
+'if there were no matching rows.'
|
||
),
|
||
|
||
// Function nr. 31
|
||
(
|
||
Name: 'BENCHMARK';
|
||
Declaration: '(count,expr)';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'The BENCHMARK() function executes the expression expr repeatedly count '
|
||
+'times. It may be used to time how quickly MySQL processes the '
|
||
+'expression. The result value is always 0. The intended use is from '
|
||
+'within the mysql client, which reports query execution times:'
|
||
),
|
||
|
||
// Function nr. 32
|
||
(
|
||
Name: 'BETWEEN';
|
||
Declaration: '';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'If expr is greater than or equal to min and expr is less than or equal '
|
||
+'to max, BETWEEN returns 1, otherwise it returns 0. This is equivalent '
|
||
+'to the expression (min <= expr AND expr <= max) if all the arguments '
|
||
+'are of the same type. Otherwise type conversion takes place according '
|
||
+'to the rules described in '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/type-conversion.html, but '
|
||
+'applied to all the three arguments.'
|
||
),
|
||
|
||
// Function nr. 33
|
||
(
|
||
Name: 'BIN';
|
||
Declaration: '(N)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a string representation of the binary value of N, where N is a '
|
||
+'longlong (BIGINT) number. This is equivalent to CONV(N,10,2). Returns '
|
||
+'NULL if N is NULL.'
|
||
),
|
||
|
||
// Function nr. 34
|
||
(
|
||
Name: 'BINARY';
|
||
Declaration: '';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'The BINARY operator casts the string following it to a binary string. '
|
||
+'This is an easy way to force a column comparison to be done byte by '
|
||
+'byte rather than character by character. This causes the comparison to '
|
||
+'be case sensitive even if the column isn''t defined as BINARY or BLOB. '
|
||
+'BINARY also causes trailing spaces to be significant.'
|
||
),
|
||
|
||
// Function nr. 35
|
||
(
|
||
Name: 'BIT_AND';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the bitwise AND of all bits in expr. The calculation is '
|
||
+'performed with 64-bit (BIGINT) precision.'
|
||
),
|
||
|
||
// Function nr. 36
|
||
(
|
||
Name: 'BIT_COUNT';
|
||
Declaration: '(N)';
|
||
Category: 'Bit Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the number of bits that are set in the argument N.'
|
||
),
|
||
|
||
// Function nr. 37
|
||
(
|
||
Name: 'BIT_LENGTH';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the length of the string str in bits.'
|
||
),
|
||
|
||
// Function nr. 38
|
||
(
|
||
Name: 'BIT_OR';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the bitwise OR of all bits in expr. The calculation is '
|
||
+'performed with 64-bit (BIGINT) precision.'
|
||
),
|
||
|
||
// Function nr. 39
|
||
(
|
||
Name: 'BIT_XOR';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the bitwise XOR of all bits in expr. The calculation is '
|
||
+'performed with 64-bit (BIGINT) precision.'
|
||
),
|
||
|
||
// Function nr. 40
|
||
(
|
||
Name: 'BOUNDARY';
|
||
Declaration: '(g)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a geometry that is the closure of the combinatorial boundary '
|
||
+'of the geometry value g.'
|
||
),
|
||
|
||
// Function nr. 41
|
||
(
|
||
Name: 'CASE';
|
||
Declaration: '';
|
||
Category: 'Control flow functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'CASE WHEN [condition] THEN result [WHEN [condition] THEN result ...] '
|
||
+'[ELSE result] END The first version returns the result where '
|
||
+'value=compare_value. The second version returns the result for the '
|
||
+'first condition that is true. If there was no matching result value, '
|
||
+'the result after ELSE is returned, or NULL if there is no ELSE part.'
|
||
),
|
||
|
||
// Function nr. 42
|
||
(
|
||
Name: 'CAST';
|
||
Declaration: '(expr AS type)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'The CAST() function takes a value of one type and produce a value of '
|
||
+'another type, similar to CONVERT(). See the description of CONVERT() '
|
||
+'for more information.'
|
||
),
|
||
|
||
// Function nr. 43
|
||
(
|
||
Name: 'CEIL';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'CEIL() is a synonym for CEILING().'
|
||
),
|
||
|
||
// Function nr. 44
|
||
(
|
||
Name: 'CEILING';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the smallest integer value not less than X.'
|
||
),
|
||
|
||
// Function nr. 45
|
||
(
|
||
Name: 'CHAR';
|
||
Declaration: '(N,... [USING charset_name])';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'CHAR() interprets each argument N as an integer and returns a string '
|
||
+'consisting of the characters given by the code values of those '
|
||
+'integers. NULL values are skipped. By default, CHAR() returns a binary '
|
||
+'string. To produce a string in a given character set, use the optional '
|
||
+'USING clause: mysql> SELECT CHARSET(CHAR(0x65)), CHARSET(CHAR(0x65 '
|
||
+'USING utf8)); +---------------------+--------------------------------+ '
|
||
+'| CHARSET(CHAR(0x65)) | CHARSET(CHAR(0x65 USING utf8)) | '
|
||
+'+---------------------+--------------------------------+ | binary | '
|
||
+'utf8 | +---------------------+--------------------------------+ If '
|
||
+'USING is given and the result string is illegal for the given '
|
||
+'character set, a warning is issued. Also, if strict SQL mode is '
|
||
+'enabled, the result from CHAR() becomes NULL.'
|
||
),
|
||
|
||
// Function nr. 46
|
||
(
|
||
Name: 'CHARACTER_LENGTH';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'CHARACTER_LENGTH() is a synonym for CHAR_LENGTH().'
|
||
),
|
||
|
||
// Function nr. 47
|
||
(
|
||
Name: 'CHARSET';
|
||
Declaration: '(str)';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the character set of the string argument.'
|
||
),
|
||
|
||
// Function nr. 48
|
||
(
|
||
Name: 'CHAR_LENGTH';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the length of the string str, measured in characters. A '
|
||
+'multi-byte character counts as a single character. This means that for '
|
||
+'a string containing five two-byte characters, LENGTH() returns 10, '
|
||
+'whereas CHAR_LENGTH() returns 5.'
|
||
),
|
||
|
||
// Function nr. 49
|
||
(
|
||
Name: 'COALESCE';
|
||
Declaration: '(value,...)';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the first non-NULL value in the list, or NULL if there are no '
|
||
+'non-NULL values.'
|
||
),
|
||
|
||
// Function nr. 50
|
||
(
|
||
Name: 'COERCIBILITY';
|
||
Declaration: '(str)';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the collation coercibility value of the string argument.'
|
||
),
|
||
|
||
// Function nr. 51
|
||
(
|
||
Name: 'COLLATION';
|
||
Declaration: '(str)';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the collation of the string argument.'
|
||
),
|
||
|
||
// Function nr. 52
|
||
(
|
||
Name: 'COMPRESS';
|
||
Declaration: '(string_to_compress)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Compresses a string and returns the result as a binary string. This '
|
||
+'function requires MySQL to have been compiled with a compression '
|
||
+'library such as zlib. Otherwise, the return value is always NULL. The '
|
||
+'compressed string can be uncompressed with UNCOMPRESS().'
|
||
),
|
||
|
||
// Function nr. 53
|
||
(
|
||
Name: 'CONCAT';
|
||
Declaration: '(str1,str2,...)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string that results from concatenating the arguments. May '
|
||
+'have one or more arguments. If all arguments are nonbinary strings, '
|
||
+'the result is a nonbinary string. If the arguments include any binary '
|
||
+'strings, the result is a binary string. A numeric argument is '
|
||
+'converted to its equivalent binary string form; if you want to avoid '
|
||
+'that, you can use an explicit type cast, as in this example: SELECT '
|
||
+'CONCAT(CAST(int_col AS CHAR), char_col); CONCAT() returns NULL if any '
|
||
+'argument is NULL.'
|
||
),
|
||
|
||
// Function nr. 54
|
||
(
|
||
Name: 'CONCAT_WS';
|
||
Declaration: '(separator,str1,str2,...)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'CONCAT_WS() stands for Concatenate With Separator and is a special '
|
||
+'form of CONCAT(). The first argument is the separator for the rest of '
|
||
+'the arguments. The separator is added between the strings to be '
|
||
+'concatenated. The separator can be a string, as can the rest of the '
|
||
+'arguments. If the separator is NULL, the result is NULL.'
|
||
),
|
||
|
||
// Function nr. 55
|
||
(
|
||
Name: 'CONNECTION_ID';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the connection ID (thread ID) for the connection. Every '
|
||
+'connection has an ID that is unique among the set of currently '
|
||
+'connected clients.'
|
||
),
|
||
|
||
// Function nr. 56
|
||
(
|
||
Name: 'CONTAINS';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether g1 completely contains g2. This '
|
||
+'tests the opposite relationship as Within().'
|
||
),
|
||
|
||
// Function nr. 57
|
||
(
|
||
Name: 'CONV';
|
||
Declaration: '(N,from_base,to_base)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Converts numbers between different number bases. Returns a string '
|
||
+'representation of the number N, converted from base from_base to base '
|
||
+'to_base. Returns NULL if any argument is NULL. The argument N is '
|
||
+'interpreted as an integer, but may be specified as an integer or a '
|
||
+'string. The minimum base is 2 and the maximum base is 36. If to_base '
|
||
+'is a negative number, N is regarded as a signed number. Otherwise, N '
|
||
+'is treated as unsigned. CONV() works with 64-bit precision.'
|
||
),
|
||
|
||
// Function nr. 58
|
||
(
|
||
Name: 'CONVERT';
|
||
Declaration: '(expr,type)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'The CONVERT() and CAST() functions take a value of one type and '
|
||
+'produce a value of another type. The type can be one of the following '
|
||
+'values: BINARY[(N)] CHAR[(N)] DATE DATETIME DECIMAL[(M[,D])] SIGNED '
|
||
+'[INTEGER] TIME UNSIGNED [INTEGER] BINARY produces a string with the '
|
||
+'BINARY data type. See '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/binary-varbinary.html for a '
|
||
+'description of how this affects comparisons. If the optional length N '
|
||
+'is given, BINARY(N) causes the cast to use no more than N bytes of the '
|
||
+'argument. Values shorter than N bytes are padded with 0x00 bytes to a '
|
||
+'length of N. CHAR(N) causes the cast to use no more than N characters '
|
||
+'of the argument. CAST() and CONVERT(... USING ...) are standard SQL '
|
||
+'syntax. The non-USING form of CONVERT() is ODBC syntax. CONVERT() with '
|
||
+'USING is used to convert data between different character sets. In '
|
||
+'MySQL, transcoding names are the same as the corresponding character '
|
||
+'set names. For example, this statement converts the string ''abc'' in '
|
||
+'the default character set to the corresponding string in the utf8 '
|
||
+'character set: SELECT CONVERT(''abc'' USING utf8);'
|
||
),
|
||
|
||
// Function nr. 59
|
||
(
|
||
Name: 'CONVERT_TZ';
|
||
Declaration: '(dt,from_tz,to_tz)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'CONVERT_TZ() converts a datetime value dt from the time zone given by '
|
||
+'from_tz to the time zone given by to_tz and returns the resulting '
|
||
+'value. Time zones are specified as described in '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/time-zone-support.html. This '
|
||
+'function returns NULL if the arguments are invalid.'
|
||
),
|
||
|
||
// Function nr. 60
|
||
(
|
||
Name: 'COS';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the cosine of X, where X is given in radians.'
|
||
),
|
||
|
||
// Function nr. 61
|
||
(
|
||
Name: 'COT';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the cotangent of X.'
|
||
),
|
||
|
||
// Function nr. 62
|
||
(
|
||
Name: 'COUNT';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a count of the number of non-NULL values of expr in the rows '
|
||
+'retrieved by a SELECT statement. The result is a BIGINT value. COUNT() '
|
||
+'returns 0 if there were no matching rows.'
|
||
),
|
||
|
||
// Function nr. 63
|
||
(
|
||
Name: 'CRC32';
|
||
Declaration: '(expr)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Computes a cyclic redundancy check value and returns a 32-bit unsigned '
|
||
+'value. The result is NULL if the argument is NULL. The argument is '
|
||
+'expected to be a string and (if possible) is treated as one if it is '
|
||
+'not.'
|
||
),
|
||
|
||
// Function nr. 64
|
||
(
|
||
Name: 'CROSSES';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 if g1 spatially crosses g2. Returns NULL if g1 is a Polygon '
|
||
+'or a MultiPolygon, or if g2 is a Point or a MultiPoint. Otherwise, '
|
||
+'returns 0. The term spatially crosses denotes a spatial relation '
|
||
+'between two given geometries that has the following properties: The '
|
||
+'two geometries intersect Their intersection results in a geometry that '
|
||
+'has a dimension that is one less than the maximum dimension of the two '
|
||
+'given geometries Their intersection is not equal to either of the two '
|
||
+'given geometries'
|
||
),
|
||
|
||
// Function nr. 65
|
||
(
|
||
Name: 'CURDATE';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the current date as a value in ''YYYY-MM-DD'' or YYYYMMDD '
|
||
+'format, depending on whether the function is used in a string or '
|
||
+'numeric context.'
|
||
),
|
||
|
||
// Function nr. 66
|
||
(
|
||
Name: 'CURRENT_DATE';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'CURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE().'
|
||
),
|
||
|
||
// Function nr. 67
|
||
(
|
||
Name: 'CURRENT_TIME';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'CURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME().'
|
||
),
|
||
|
||
// Function nr. 68
|
||
(
|
||
Name: 'CURRENT_TIMESTAMP';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'CURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW().'
|
||
),
|
||
|
||
// Function nr. 69
|
||
(
|
||
Name: 'CURRENT_USER';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the user name and host name combination for the MySQL account '
|
||
+'that the server used to authenticate the current client. This account '
|
||
+'determines your access privileges. The return value is a string in the '
|
||
+'utf8 character set. The value of CURRENT_USER() can differ from the '
|
||
+'value of USER().'
|
||
),
|
||
|
||
// Function nr. 70
|
||
(
|
||
Name: 'CURTIME';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the current time as a value in ''HH:MM:SS'' or HHMMSS.uuuuuu '
|
||
+'format, depending on whether the function is used in a string or '
|
||
+'numeric context. The value is expressed in the current time zone.'
|
||
),
|
||
|
||
// Function nr. 71
|
||
(
|
||
Name: 'DATABASE';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the default (current) database name as a string in the utf8 '
|
||
+'character set. If there is no default database, DATABASE() returns '
|
||
+'NULL. Within a stored routine, the default database is the database '
|
||
+'that the routine is associated with, which is not necessarily the same '
|
||
+'as the database that is the default in the calling context.'
|
||
),
|
||
|
||
// Function nr. 72
|
||
(
|
||
Name: 'DATE';
|
||
Declaration: '(expr)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Extracts the date part of the date or datetime expression expr.'
|
||
),
|
||
|
||
// Function nr. 73
|
||
(
|
||
Name: 'DATEDIFF';
|
||
Declaration: '(expr1,expr2)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'DATEDIFF() returns expr1 - expr2 expressed as a value in days from one '
|
||
+'date to the other. expr1 and expr2 are date or date-and-time '
|
||
+'expressions. Only the date parts of the values are used in the '
|
||
+'calculation.'
|
||
),
|
||
|
||
// Function nr. 74
|
||
(
|
||
Name: 'DATE_ADD';
|
||
Declaration: '(date,INTERVAL expr unit)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'These functions perform date arithmetic. The date argument specifies '
|
||
+'the starting date or datetime value. expr is an expression specifying '
|
||
+'the interval value to be added or subtracted from the starting date. '
|
||
+'expr is a string; it may start with a "-" for negative intervals. unit '
|
||
+'is a keyword indicating the units in which the expression should be '
|
||
+'interpreted.'
|
||
),
|
||
|
||
// Function nr. 75
|
||
(
|
||
Name: 'DATE_FORMAT';
|
||
Declaration: '(date,format)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Formats the date value according to the format string.'
|
||
),
|
||
|
||
// Function nr. 76
|
||
(
|
||
Name: 'DATE_SUB';
|
||
Declaration: '(date,INTERVAL expr unit)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'See the description for DATE_ADD().'
|
||
),
|
||
|
||
// Function nr. 77
|
||
(
|
||
Name: 'DAY';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'DAY() is a synonym for DAYOFMONTH().'
|
||
),
|
||
|
||
// Function nr. 78
|
||
(
|
||
Name: 'DAYNAME';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the name of the weekday for date. As of MySQL 5.1.12, the '
|
||
+'language used for the name is controlled by the value of the '
|
||
+'lc_time_names system variable '
|
||
+'(http://dev.mysql.com/doc/refman/5.1/en/locale-support.html).'
|
||
),
|
||
|
||
// Function nr. 79
|
||
(
|
||
Name: 'DAYOFMONTH';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the day of the month for date, in the range 1 to 31, or 0 for '
|
||
+'dates such as ''0000-00-00'' or ''2008-00-00'' that have a zero day '
|
||
+'part.'
|
||
),
|
||
|
||
// Function nr. 80
|
||
(
|
||
Name: 'DAYOFWEEK';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the weekday index for date (1 = Sunday, 2 = Monday, ..., 7 = '
|
||
+'Saturday). These index values correspond to the ODBC standard.'
|
||
),
|
||
|
||
// Function nr. 81
|
||
(
|
||
Name: 'DAYOFYEAR';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the day of the year for date, in the range 1 to 366.'
|
||
),
|
||
|
||
// Function nr. 82
|
||
(
|
||
Name: 'DECODE';
|
||
Declaration: '(crypt_str,pass_str)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Decrypts the encrypted string crypt_str using pass_str as the '
|
||
+'password. crypt_str should be a string returned from ENCODE().'
|
||
),
|
||
|
||
// Function nr. 83
|
||
(
|
||
Name: 'DEFAULT';
|
||
Declaration: '(col_name)';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the default value for a table column. An error results if the '
|
||
+'column has no default value.'
|
||
),
|
||
|
||
// Function nr. 84
|
||
(
|
||
Name: 'DEGREES';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the argument X, converted from radians to degrees.'
|
||
),
|
||
|
||
// Function nr. 85
|
||
(
|
||
Name: 'DES_DECRYPT';
|
||
Declaration: '(crypt_str[,key_str])';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Decrypts a string encrypted with DES_ENCRYPT(). If an error occurs, '
|
||
+'this function returns NULL. This function works only if MySQL has been '
|
||
+'configured with SSL support. See '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/secure-connections.html. If no '
|
||
+'key_str argument is given, DES_DECRYPT() examines the first byte of '
|
||
+'the encrypted string to determine the DES key number that was used to '
|
||
+'encrypt the original string, and then reads the key from the DES key '
|
||
+'file to decrypt the message. For this to work, the user must have the '
|
||
+'SUPER privilege. The key file can be specified with the --des-key-file '
|
||
+'server option. If you pass this function a key_str argument, that '
|
||
+'string is used as the key for decrypting the message. If the crypt_str '
|
||
+'argument does not appear to be an encrypted string, MySQL returns the '
|
||
+'given crypt_str.'
|
||
),
|
||
|
||
// Function nr. 86
|
||
(
|
||
Name: 'DES_ENCRYPT';
|
||
Declaration: '(str[,{key_num|key_str}])';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Encrypts the string with the given key using the Triple-DES algorithm. '
|
||
+'This function works only if MySQL has been configured with SSL '
|
||
+'support. See '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/secure-connections.html. The '
|
||
+'encryption key to use is chosen based on the second argument to '
|
||
+'DES_ENCRYPT(), if one was given. With no argument, the first key from '
|
||
+'the DES key file is used. With a key_num argument, the given key '
|
||
+'number (0-9) from the DES key file is used. With a key_str argument, '
|
||
+'the given key string is used to encrypt str. The key file can be '
|
||
+'specified with the --des-key-file server option. The return string is '
|
||
+'a binary string where the first character is CHAR(128 | key_num). If '
|
||
+'an error occurs, DES_ENCRYPT() returns NULL. The 128 is added to make '
|
||
+'it easier to recognize an encrypted key. If you use a string key, '
|
||
+'key_num is 127. The string length for the result is given by this '
|
||
+'formula: new_len = orig_len + (8 - (orig_len % 8)) + 1 Each line in '
|
||
+'the DES key file has the following format: key_num des_key_str Each '
|
||
+'key_num value must be a number in the range from 0 to 9. Lines in the '
|
||
+'file may be in any order. des_key_str is the string that is used to '
|
||
+'encrypt the message. There should be at least one space between the '
|
||
+'number and the key. The first key is the default key that is used if '
|
||
+'you do not specify any key argument to DES_ENCRYPT(). You can tell '
|
||
+'MySQL to read new key values from the key file with the FLUSH '
|
||
+'DES_KEY_FILE statement. This requires the RELOAD privilege. One '
|
||
+'benefit of having a set of default keys is that it gives applications '
|
||
+'a way to check for the existence of encrypted column values, without '
|
||
+'giving the end user the right to decrypt those values.'
|
||
),
|
||
|
||
// Function nr. 87
|
||
(
|
||
Name: 'DIMENSION';
|
||
Declaration: '(g)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the inherent dimension of the geometry value g. The result can '
|
||
+'be -1, 0, 1, or 2. The meaning of these values is given in '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/gis-class-geometry.html.'
|
||
),
|
||
|
||
// Function nr. 88
|
||
(
|
||
Name: 'DISJOINT';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether g1 is spatially disjoint from (does '
|
||
+'not intersect) g2.'
|
||
),
|
||
|
||
// Function nr. 89
|
||
(
|
||
Name: 'DIV';
|
||
Declaration: '';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Integer division. Similar to FLOOR(), but is safe with BIGINT values. '
|
||
+'Incorrect results may occur for noninteger operands that exceed BIGINT '
|
||
+'range.'
|
||
),
|
||
|
||
// Function nr. 90
|
||
(
|
||
Name: 'ELT';
|
||
Declaration: '(N,str1,str2,str3,...)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns str1 if N = 1, str2 if N = 2, and so on. Returns NULL if N is '
|
||
+'less than 1 or greater than the number of arguments. ELT() is the '
|
||
+'complement of FIELD().'
|
||
),
|
||
|
||
// Function nr. 91
|
||
(
|
||
Name: 'ENCODE';
|
||
Declaration: '(str,pass_str)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Encrypt str using pass_str as the password. To decrypt the result, use '
|
||
+'DECODE(). The result is a binary string of the same length as str. The '
|
||
+'strength of the encryption is based on how good the random generator '
|
||
+'is. It should suffice for short strings.'
|
||
),
|
||
|
||
// Function nr. 92
|
||
(
|
||
Name: 'ENCRYPT';
|
||
Declaration: '(str[,salt])';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Encrypts str using the Unix crypt() system call and returns a binary '
|
||
+'string. The salt argument should be a string with at least two '
|
||
+'characters. If no salt argument is given, a random value is used.'
|
||
),
|
||
|
||
// Function nr. 93
|
||
(
|
||
Name: 'ENDPOINT';
|
||
Declaration: '(ls)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the Point that is the endpoint of the LineString value ls.'
|
||
),
|
||
|
||
// Function nr. 94
|
||
(
|
||
Name: 'ENVELOPE';
|
||
Declaration: '(g)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the Minimum Bounding Rectangle (MBR) for the geometry value g. '
|
||
+'The result is returned as a Polygon value. The polygon is defined by '
|
||
+'the corner points of the bounding box: POLYGON((MINX MINY, MAXX MINY, '
|
||
+'MAXX MAXY, MINX MAXY, MINX MINY))'
|
||
),
|
||
|
||
// Function nr. 95
|
||
(
|
||
Name: 'EQUALS';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether g1 is spatially equal to g2.'
|
||
),
|
||
|
||
// Function nr. 96
|
||
(
|
||
Name: 'EXP';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the value of e (the base of natural logarithms) raised to the '
|
||
+'power of X. The inverse of this function is LOG() (using a single '
|
||
+'argument only) or LN().'
|
||
),
|
||
|
||
// Function nr. 97
|
||
(
|
||
Name: 'EXPORT_SET';
|
||
Declaration: '(bits,on,off[,separator[,number_of_bits]])';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a string such that for every bit set in the value bits, you '
|
||
+'get an on string and for every bit not set in the value, you get an '
|
||
+'off string. Bits in bits are examined from right to left (from '
|
||
+'low-order to high-order bits). Strings are added to the result from '
|
||
+'left to right, separated by the separator string (the default being '
|
||
+'the comma character ","). The number of bits examined is given by '
|
||
+'number_of_bits (defaults to 64).'
|
||
),
|
||
|
||
// Function nr. 98
|
||
(
|
||
Name: 'EXTERIORRING';
|
||
Declaration: '(poly)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the exterior ring of the Polygon value poly as a LineString.'
|
||
),
|
||
|
||
// Function nr. 99
|
||
(
|
||
Name: 'EXTRACT';
|
||
Declaration: '(unit FROM date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'The EXTRACT() function uses the same kinds of unit specifiers as '
|
||
+'DATE_ADD() or DATE_SUB(), but extracts parts from the date rather than '
|
||
+'performing date arithmetic.'
|
||
),
|
||
|
||
// Function nr. 100
|
||
(
|
||
Name: 'EXTRACTVALUE';
|
||
Declaration: '(xml_frag, xpath_expr)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'ExtractValue() takes two string arguments, a fragment of XML markup '
|
||
+'xml_frag and an XPath expression xpath_expr (also known as a locator); '
|
||
+'it returns the text (CDATA) of the first text node which is a child of '
|
||
+'the element(s) matched by the XPath expression. It is the equivalent '
|
||
+'of performing a match using the xpath_expr after appending /text(). In '
|
||
+'other words, ExtractValue(''<a><b>Sakila</b></a>'', ''/a/b'') and '
|
||
+'ExtractValue(''<a><b>Sakila</b></a>'', ''/a/b/text()'') produce the '
|
||
+'same result. If multiple matches are found, then the content of the '
|
||
+'first child text node of each matching element is returned (in the '
|
||
+'order matched) as a single, space-delimited string. If no matching '
|
||
+'text node is found for the expression (including the implicit /text()) '
|
||
+'--- for whatever reason, as long as xpath_expr is valid, and xml_frag '
|
||
+'consists of elements which are properly nested and closed --- an empty '
|
||
+'string is returned. No distinction is made between a match on an empty '
|
||
+'element and no match at all. This is by design. If you need to '
|
||
+'determine whether no matching element was found in xml_frag or such an '
|
||
+'element was found but contained no child text nodes, you should test '
|
||
+'the result of an expression that uses the XPath count() function. For '
|
||
+'example, both of these statements return an empty string, as shown '
|
||
+'here: mysql> SELECT ExtractValue(''<a><b/></a>'', ''/a/b''); '
|
||
+'+-------------------------------------+ | '
|
||
+'ExtractValue(''<a><b/></a>'', ''/a/b'') | '
|
||
+'+-------------------------------------+ | | '
|
||
+'+-------------------------------------+ 1 row in set (0.00 sec) mysql> '
|
||
+'SELECT ExtractValue(''<a><c/></a>'', ''/a/b''); '
|
||
+'+-------------------------------------+ | '
|
||
+'ExtractValue(''<a><c/></a>'', ''/a/b'') | '
|
||
+'+-------------------------------------+ | | '
|
||
+'+-------------------------------------+ 1 row in set (0.00 sec) '
|
||
+'However, you can determine whether there was actually a matching '
|
||
+'element using the following: mysql> SELECT '
|
||
+'ExtractValue(''<a><b/></a>'', ''count(/a/b)''); '
|
||
+'+-------------------------------------+ | '
|
||
+'ExtractValue(''<a><b/></a>'', ''count(/a/b)'') | '
|
||
+'+-------------------------------------+ | 1 | '
|
||
+'+-------------------------------------+ 1 row in set (0.00 sec) mysql> '
|
||
+'SELECT ExtractValue(''<a><c/></a>'', ''count(/a/b)''); '
|
||
+'+-------------------------------------+ | '
|
||
+'ExtractValue(''<a><c/></a>'', ''count(/a/b)'') | '
|
||
+'+-------------------------------------+ | 0 | '
|
||
+'+-------------------------------------+ 1 row in set (0.01 sec) '
|
||
+'*Important*: ExtractValue() returns only CDATA, and does not return '
|
||
+'any tags that might be contained within a matching tag, nor any of '
|
||
+'their content (see the result returned as val1 in the following '
|
||
+'example).'
|
||
),
|
||
|
||
// Function nr. 101
|
||
(
|
||
Name: 'FIELD';
|
||
Declaration: '(str,str1,str2,str3,...)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the index (position) of str in the str1, str2, str3, ... list. '
|
||
+'Returns 0 if str is not found. If all arguments to FIELD() are '
|
||
+'strings, all arguments are compared as strings. If all arguments are '
|
||
+'numbers, they are compared as numbers. Otherwise, the arguments are '
|
||
+'compared as double. If str is NULL, the return value is 0 because NULL '
|
||
+'fails equality comparison with any value. FIELD() is the complement of '
|
||
+'ELT().'
|
||
),
|
||
|
||
// Function nr. 102
|
||
(
|
||
Name: 'FIND_IN_SET';
|
||
Declaration: '(str,strlist)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a value in the range of 1 to N if the string str is in the '
|
||
+'string list strlist consisting of N substrings. A string list is a '
|
||
+'string composed of substrings separated by "," characters. If the '
|
||
+'first argument is a constant string and the second is a column of type '
|
||
+'SET, the FIND_IN_SET() function is optimized to use bit arithmetic. '
|
||
+'Returns 0 if str is not in strlist or if strlist is the empty string. '
|
||
+'Returns NULL if either argument is NULL. This function does not work '
|
||
+'properly if the first argument contains a comma (",") character.'
|
||
),
|
||
|
||
// Function nr. 103
|
||
(
|
||
Name: 'FLOOR';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the largest integer value not greater than X.'
|
||
),
|
||
|
||
// Function nr. 104
|
||
(
|
||
Name: 'FORMAT';
|
||
Declaration: '(X,D)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Formats the number X to a format like ''#,###,###.##'', rounded to D '
|
||
+'decimal places, and returns the result as a string. If D is 0, the '
|
||
+'result has no decimal point or fractional part.'
|
||
),
|
||
|
||
// Function nr. 105
|
||
(
|
||
Name: 'FOUND_ROWS';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'A SELECT statement may include a LIMIT clause to restrict the number '
|
||
+'of rows the server returns to the client. In some cases, it is '
|
||
+'desirable to know how many rows the statement would have returned '
|
||
+'without the LIMIT, but without running the statement again. To obtain '
|
||
+'this row count, include a SQL_CALC_FOUND_ROWS option in the SELECT '
|
||
+'statement, and then invoke FOUND_ROWS() afterward:'
|
||
),
|
||
|
||
// Function nr. 106
|
||
(
|
||
Name: 'FROM_DAYS';
|
||
Declaration: '(N)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Given a day number N, returns a DATE value.'
|
||
),
|
||
|
||
// Function nr. 107
|
||
(
|
||
Name: 'FROM_UNIXTIME';
|
||
Declaration: '(unix_timestamp)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a representation of the unix_timestamp argument as a value in '
|
||
+'''YYYY-MM-DD HH:MM:SS'' or YYYYMMDDHHMMSS.uuuuuu format, depending on '
|
||
+'whether the function is used in a string or numeric context. The value '
|
||
+'is expressed in the current time zone. unix_timestamp is an internal '
|
||
+'timestamp value such as is produced by the UNIX_TIMESTAMP() function. '
|
||
+'If format is given, the result is formatted according to the format '
|
||
+'string, which is used the same way as listed in the entry for the '
|
||
+'DATE_FORMAT() function.'
|
||
),
|
||
|
||
// Function nr. 108
|
||
(
|
||
Name: 'GEOMCOLLFROMTEXT';
|
||
Declaration: '(wkt[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a GEOMETRYCOLLECTION value using its WKT representation and '
|
||
+'SRID.'
|
||
),
|
||
|
||
// Function nr. 109
|
||
(
|
||
Name: 'GEOMCOLLFROMWKB';
|
||
Declaration: '(wkb[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a GEOMETRYCOLLECTION value using its WKB representation and '
|
||
+'SRID.'
|
||
),
|
||
|
||
// Function nr. 110
|
||
(
|
||
Name: 'GEOMETRY';
|
||
Declaration: '';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: ''
|
||
),
|
||
|
||
// Function nr. 111
|
||
(
|
||
Name: 'GEOMETRYCOLLECTION';
|
||
Declaration: '(g1,g2,...)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a GeometryCollection.'
|
||
),
|
||
|
||
// Function nr. 112
|
||
(
|
||
Name: 'GEOMETRYTYPE';
|
||
Declaration: '(g)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns as a string the name of the geometry type of which the '
|
||
+'geometry instance g is a member. The name corresponds to one of the '
|
||
+'instantiable Geometry subclasses.'
|
||
),
|
||
|
||
// Function nr. 113
|
||
(
|
||
Name: 'GEOMFROMTEXT';
|
||
Declaration: '(wkt[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a geometry value of any type using its WKT representation '
|
||
+'and SRID.'
|
||
),
|
||
|
||
// Function nr. 114
|
||
(
|
||
Name: 'GEOMFROMWKB';
|
||
Declaration: '(wkb[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a geometry value of any type using its WKB representation '
|
||
+'and SRID.'
|
||
),
|
||
|
||
// Function nr. 115
|
||
(
|
||
Name: 'GET_FORMAT';
|
||
Declaration: '({DATE|TIME|DATETIME}, {''EUR''|''USA''|''JIS''|''ISO''|''INTERNAL''})';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a format string. This function is useful in combination with '
|
||
+'the DATE_FORMAT() and the STR_TO_DATE() functions.'
|
||
),
|
||
|
||
// Function nr. 116
|
||
(
|
||
Name: 'GET_LOCK';
|
||
Declaration: '(str,timeout)';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Tries to obtain a lock with a name given by the string str, using a '
|
||
+'timeout of timeout seconds. Returns 1 if the lock was obtained '
|
||
+'successfully, 0 if the attempt timed out (for example, because another '
|
||
+'client has previously locked the name), or NULL if an error occurred '
|
||
+'(such as running out of memory or the thread was killed with '
|
||
+'mysqladmin kill). If you have a lock obtained with GET_LOCK(), it is '
|
||
+'released when you execute RELEASE_LOCK(), execute a new GET_LOCK(), or '
|
||
+'your connection terminates (either normally or abnormally). Locks '
|
||
+'obtained with GET_LOCK() do not interact with transactions. That is, '
|
||
+'committing a transaction does not release any such locks obtained '
|
||
+'during the transaction. This function can be used to implement '
|
||
+'application locks or to simulate record locks. Names are locked on a '
|
||
+'server-wide basis. If a name has been locked by one client, GET_LOCK() '
|
||
+'blocks any request by another client for a lock with the same name. '
|
||
+'This allows clients that agree on a given lock name to use the name to '
|
||
+'perform cooperative advisory locking. But be aware that it also allows '
|
||
+'a client that is not among the set of cooperating clients to lock a '
|
||
+'name, either inadvertently or deliberately, and thus prevent any of '
|
||
+'the cooperating clients from locking that name. One way to reduce the '
|
||
+'likelihood of this is to use lock names that are database-specific or '
|
||
+'application-specific. For example, use lock names of the form '
|
||
+'db_name.str or app_name.str.'
|
||
),
|
||
|
||
// Function nr. 117
|
||
(
|
||
Name: 'GLENGTH';
|
||
Declaration: '(ls)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns as a double-precision number the length of the LineString '
|
||
+'value ls in its associated spatial reference.'
|
||
),
|
||
|
||
// Function nr. 118
|
||
(
|
||
Name: 'GREATEST';
|
||
Declaration: '(value1,value2,...)';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'With two or more arguments, returns the largest (maximum-valued) '
|
||
+'argument. The arguments are compared using the same rules as for '
|
||
+'LEAST().'
|
||
),
|
||
|
||
// Function nr. 119
|
||
(
|
||
Name: 'GROUP_CONCAT';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This function returns a string result with the concatenated non-NULL '
|
||
+'values from a group. It returns NULL if there are no non-NULL values. '
|
||
+'The full syntax is as follows: GROUP_CONCAT([DISTINCT] expr [,expr '
|
||
+'...] [ORDER BY {unsigned_integer | col_name | expr} [ASC | DESC] '
|
||
+'[,col_name ...]] [SEPARATOR str_val])'
|
||
),
|
||
|
||
// Function nr. 120
|
||
(
|
||
Name: 'HEX';
|
||
Declaration: '(N_or_S)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'If N_or_S is a number, returns a string representation of the '
|
||
+'hexadecimal value of N, where N is a longlong (BIGINT) number. This is '
|
||
+'equivalent to CONV(N,10,16). If N_or_S is a string, returns a '
|
||
+'hexadecimal string representation of N_or_S where each character in '
|
||
+'N_or_S is converted to two hexadecimal digits. The inverse of this '
|
||
+'operation is performed by the UNHEX() function.'
|
||
),
|
||
|
||
// Function nr. 121
|
||
(
|
||
Name: 'HOUR';
|
||
Declaration: '(time)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the hour for time. The range of the return value is 0 to 23 '
|
||
+'for time-of-day values. However, the range of TIME values actually is '
|
||
+'much larger, so HOUR can return values greater than 23.'
|
||
),
|
||
|
||
// Function nr. 122
|
||
(
|
||
Name: 'IF';
|
||
Declaration: '(expr1,expr2,expr3)';
|
||
Category: 'Control flow functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'If expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then IF() returns '
|
||
+'expr2; otherwise it returns expr3. IF() returns a numeric or string '
|
||
+'value, depending on the context in which it is used.'
|
||
),
|
||
|
||
// Function nr. 123
|
||
(
|
||
Name: 'IFNULL';
|
||
Declaration: '(expr1,expr2)';
|
||
Category: 'Control flow functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'If expr1 is not NULL, IFNULL() returns expr1; otherwise it returns '
|
||
+'expr2. IFNULL() returns a numeric or string value, depending on the '
|
||
+'context in which it is used.'
|
||
),
|
||
|
||
// Function nr. 124
|
||
(
|
||
Name: 'IN';
|
||
Declaration: '(value,...)';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 if expr is equal to any of the values in the IN list, else '
|
||
+'returns 0. If all values are constants, they are evaluated according '
|
||
+'to the type of expr and sorted. The search for the item then is done '
|
||
+'using a binary search. This means IN is very quick if the IN value '
|
||
+'list consists entirely of constants. Otherwise, type conversion takes '
|
||
+'place according to the rules described in '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/type-conversion.html, but '
|
||
+'applied to all the arguments.'
|
||
),
|
||
|
||
// Function nr. 125
|
||
(
|
||
Name: 'INET_ATON';
|
||
Declaration: '(expr)';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Given the dotted-quad representation of a network address as a string, '
|
||
+'returns an integer that represents the numeric value of the address. '
|
||
+'Addresses may be 4- or 8-byte addresses.'
|
||
),
|
||
|
||
// Function nr. 126
|
||
(
|
||
Name: 'INET_NTOA';
|
||
Declaration: '(expr)';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Given a numeric network address in network byte order (4 or 8 byte), '
|
||
+'returns the dotted-quad representation of the address as a string.'
|
||
),
|
||
|
||
// Function nr. 127
|
||
(
|
||
Name: 'INSERT';
|
||
Declaration: '(str,pos,len,newstr)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string str, with the substring beginning at position pos '
|
||
+'and len characters long replaced by the string newstr. Returns the '
|
||
+'original string if pos is not within the length of the string. '
|
||
+'Replaces the rest of the string from position pos if len is not within '
|
||
+'the length of the rest of the string. Returns NULL if any argument is '
|
||
+'NULL.'
|
||
),
|
||
|
||
// Function nr. 128
|
||
(
|
||
Name: 'INSTR';
|
||
Declaration: '(str,substr)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the position of the first occurrence of substring substr in '
|
||
+'string str. This is the same as the two-argument form of LOCATE(), '
|
||
+'except that the order of the arguments is reversed.'
|
||
),
|
||
|
||
// Function nr. 129
|
||
(
|
||
Name: 'INTERIORRINGN';
|
||
Declaration: '(poly,N)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the N-th interior ring for the Polygon value poly as a '
|
||
+'LineString. Rings are numbered beginning with 1.'
|
||
),
|
||
|
||
// Function nr. 130
|
||
(
|
||
Name: 'INTERSECTS';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether g1 spatially intersects g2.'
|
||
),
|
||
|
||
// Function nr. 131
|
||
(
|
||
Name: 'INTERVAL';
|
||
Declaration: '(N,N1,N2,N3,...)';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 0 if N < N1, 1 if N < N2 and so on or -1 if N is NULL. All '
|
||
+'arguments are treated as integers. It is required that N1 < N2 < N3 < '
|
||
+'... < Nn for this function to work correctly. This is because a binary '
|
||
+'search is used (very fast).'
|
||
),
|
||
|
||
// Function nr. 132
|
||
(
|
||
Name: 'IS';
|
||
Declaration: '';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Tests a value against a boolean value, where boolean_value can be '
|
||
+'TRUE, FALSE, or UNKNOWN.'
|
||
),
|
||
|
||
// Function nr. 133
|
||
(
|
||
Name: 'ISEMPTY';
|
||
Declaration: '(g)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 if the geometry value g is the empty geometry, 0 if it is '
|
||
+'not empty, and -1 if the argument is NULL. If the geometry is empty, '
|
||
+'it represents the empty point set.'
|
||
),
|
||
|
||
// Function nr. 134
|
||
(
|
||
Name: 'ISNULL';
|
||
Declaration: '(expr)';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'If expr is NULL, ISNULL() returns 1, otherwise it returns 0.'
|
||
),
|
||
|
||
// Function nr. 135
|
||
(
|
||
Name: 'ISSIMPLE';
|
||
Declaration: '(g)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Currently, this function is a placeholder and should not be used. If '
|
||
+'implemented, its behavior will be as described in the next paragraph. '
|
||
+'Returns 1 if the geometry value g has no anomalous geometric points, '
|
||
+'such as self-intersection or self-tangency. IsSimple() returns 0 if '
|
||
+'the argument is not simple, and -1 if it is NULL. The description of '
|
||
+'each instantiable geometric class given earlier in the chapter '
|
||
+'includes the specific conditions that cause an instance of that class '
|
||
+'to be classified as not simple. (See [HELP Geometry hierarchy].)'
|
||
),
|
||
|
||
// Function nr. 136
|
||
(
|
||
Name: 'IS_FREE_LOCK';
|
||
Declaration: '(str)';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Checks whether the lock named str is free to use (that is, not '
|
||
+'locked). Returns 1 if the lock is free (no one is using the lock), 0 '
|
||
+'if the lock is in use, and NULL if an error occurs (such as an '
|
||
+'incorrect argument).'
|
||
),
|
||
|
||
// Function nr. 137
|
||
(
|
||
Name: 'IS_USED_LOCK';
|
||
Declaration: '(str)';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Checks whether the lock named str is in use (that is, locked). If so, '
|
||
+'it returns the connection identifier of the client that holds the '
|
||
+'lock. Otherwise, it returns NULL.'
|
||
),
|
||
|
||
// Function nr. 138
|
||
(
|
||
Name: 'LAST_DAY';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Takes a date or datetime value and returns the corresponding value for '
|
||
+'the last day of the month. Returns NULL if the argument is invalid.'
|
||
),
|
||
|
||
// Function nr. 139
|
||
(
|
||
Name: 'LAST_INSERT_ID';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'For MySQL 5.1.12 and later, LAST_INSERT_ID() (no arguments) returns '
|
||
+'the first automatically generated value successfully inserted for an '
|
||
+'AUTO_INCREMENT column as a result of the most recently executed INSERT '
|
||
+'statement. The value of LAST_INSERT_ID() remains unchanged if no rows '
|
||
+'are successfully inserted. For example, after inserting a row that '
|
||
+'generates an AUTO_INCREMENT value, you can get the value like this: '
|
||
+'mysql> SELECT LAST_INSERT_ID(); -> 195 In MySQL 5.1.11 and earlier, '
|
||
+'LAST_INSERT_ID() (no arguments) returns the first automatically '
|
||
+'generated value if any rows were successfully inserted or updated. '
|
||
+'This means that the returned value could be a value that was not '
|
||
+'successfully inserted into the table. If no rows were successfully '
|
||
+'inserted, LAST_INSERT_ID() returns 0. The value of LAST_INSERT_ID() '
|
||
+'will be consistent across all versions if all rows in the INSERT or '
|
||
+'UPDATE statement were successful. if a table contains an '
|
||
+'AUTO_INCREMENT column and INSERT ... ON DUPLICATE KEY UPDATE updates '
|
||
+'(rather than inserts) a row, the value of LAST_INSERT_ID() is not '
|
||
+'meaningful prior to MySQL 5.1.12. For a workaround, see '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/insert-on-duplicate.html. The '
|
||
+'currently executing statement does not affect the value of '
|
||
+'LAST_INSERT_ID(). Suppose that you generate an AUTO_INCREMENT value '
|
||
+'with one statement, and then refer to LAST_INSERT_ID() in a '
|
||
+'multiple-row INSERT statement that inserts rows into a table with its '
|
||
+'own AUTO_INCREMENT column. The value of LAST_INSERT_ID() will remain '
|
||
+'stable in the second statement; its value for the second and later '
|
||
+'rows is not affected by the earlier row insertions. (However, if you '
|
||
+'mix references to LAST_INSERT_ID() and LAST_INSERT_ID(expr), the '
|
||
+'effect is undefined.) If the previous statement returned an error, the '
|
||
+'value of LAST_INSERT_ID() is undefined. For transactional tables, if '
|
||
+'the statement is rolled back due to an error, the value of '
|
||
+'LAST_INSERT_ID() is left undefined. For manual ROLLBACK, the value of '
|
||
+'LAST_INSERT_ID() is not restored to that before the transaction; it '
|
||
+'remains as it was at the point of the ROLLBACK. Within the body of a '
|
||
+'stored routine (procedure or function) or a trigger, the value of '
|
||
+'LAST_INSERT_ID() changes the same way as for statements executed '
|
||
+'outside the body of these kinds of objects. The effect of a stored '
|
||
+'routine or trigger upon the value of LAST_INSERT_ID() that is seen by '
|
||
+'following statements depends on the kind of routine: If a stored '
|
||
+'procedure executes statements that change the value of '
|
||
+'LAST_INSERT_ID(), the changed value will be seen by statements that '
|
||
+'follow the procedure call. For stored functions and triggers that '
|
||
+'change the value, the value is restored when the function or trigger '
|
||
+'ends, so following statements will not see a changed value.'
|
||
),
|
||
|
||
// Function nr. 140
|
||
(
|
||
Name: 'LCASE';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'LCASE() is a synonym for LOWER().'
|
||
),
|
||
|
||
// Function nr. 141
|
||
(
|
||
Name: 'LEAST';
|
||
Declaration: '(value1,value2,...)';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'With two or more arguments, returns the smallest (minimum-valued) '
|
||
+'argument. The arguments are compared using the following rules: If the '
|
||
+'return value is used in an INTEGER context or all arguments are '
|
||
+'integer-valued, they are compared as integers. If the return value is '
|
||
+'used in a REAL context or all arguments are real-valued, they are '
|
||
+'compared as reals. If any argument is a case-sensitive string, the '
|
||
+'arguments are compared as case-sensitive strings. In all other cases, '
|
||
+'the arguments are compared as case-insensitive strings. LEAST() '
|
||
+'returns NULL if any argument is NULL.'
|
||
),
|
||
|
||
// Function nr. 142
|
||
(
|
||
Name: 'LEFT';
|
||
Declaration: '(str,len)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the leftmost len characters from the string str, or NULL if '
|
||
+'any argument is NULL.'
|
||
),
|
||
|
||
// Function nr. 143
|
||
(
|
||
Name: 'LENGTH';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the length of the string str, measured in bytes. A multi-byte '
|
||
+'character counts as multiple bytes. This means that for a string '
|
||
+'containing five two-byte characters, LENGTH() returns 10, whereas '
|
||
+'CHAR_LENGTH() returns 5.'
|
||
),
|
||
|
||
// Function nr. 144
|
||
(
|
||
Name: 'LIKE';
|
||
Declaration: '';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Pattern matching using SQL simple regular expression comparison. '
|
||
+'Returns 1 (TRUE) or 0 (FALSE). If either expr or pat is NULL, the '
|
||
+'result is NULL. The pattern need not be a literal string. For example, '
|
||
+'it can be specified as a string expression or table column.'
|
||
),
|
||
|
||
// Function nr. 145
|
||
(
|
||
Name: 'LINEFROMTEXT';
|
||
Declaration: '(wkt[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a LINESTRING value using its WKT representation and SRID.'
|
||
),
|
||
|
||
// Function nr. 146
|
||
(
|
||
Name: 'LINEFROMWKB';
|
||
Declaration: '(wkb[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a LINESTRING value using its WKB representation and SRID.'
|
||
),
|
||
|
||
// Function nr. 147
|
||
(
|
||
Name: 'LINESTRING';
|
||
Declaration: '(pt1,pt2,...)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a LineString value from a number of Point or WKB Point '
|
||
+'arguments. If the number of arguments is less than two, the return '
|
||
+'value is NULL.'
|
||
),
|
||
|
||
// Function nr. 148
|
||
(
|
||
Name: 'LN';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the natural logarithm of X; that is, the base-e logarithm of '
|
||
+'X. If X is less than or equal to 0, then NULL is returned.'
|
||
),
|
||
|
||
// Function nr. 149
|
||
(
|
||
Name: 'LOAD_FILE';
|
||
Declaration: '(file_name)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Reads the file and returns the file contents as a string. To use this '
|
||
+'function, the file must be located on the server host, you must '
|
||
+'specify the full path name to the file, and you must have the FILE '
|
||
+'privilege. The file must be readable by all and its size less than '
|
||
+'max_allowed_packet bytes. If the secure_file_priv system variable is '
|
||
+'set to a nonempty directory name, the file to be loaded must be '
|
||
+'located in that directory. If the file does not exist or cannot be '
|
||
+'read because one of the preceding conditions is not satisfied, the '
|
||
+'function returns NULL. As of MySQL 5.1.6, the character_set_filesystem '
|
||
+'system variable controls interpretation of file names that are given '
|
||
+'as literal strings.'
|
||
),
|
||
|
||
// Function nr. 150
|
||
(
|
||
Name: 'LOCALTIME';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'LOCALTIME and LOCALTIME() are synonyms for NOW().'
|
||
),
|
||
|
||
// Function nr. 151
|
||
(
|
||
Name: 'LOCALTIMESTAMP';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'LOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW().'
|
||
),
|
||
|
||
// Function nr. 152
|
||
(
|
||
Name: 'LOCATE';
|
||
Declaration: '(substr,str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'The first syntax returns the position of the first occurrence of '
|
||
+'substring substr in string str. The second syntax returns the position '
|
||
+'of the first occurrence of substring substr in string str, starting at '
|
||
+'position pos. Returns 0 if substr is not in str.'
|
||
),
|
||
|
||
// Function nr. 153
|
||
(
|
||
Name: 'LOG';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'If called with one parameter, this function returns the natural '
|
||
+'logarithm of X. If X is less than or equal to 0, then NULL is '
|
||
+'returned. The inverse of this function (when called with a single '
|
||
+'argument) is the EXP() function.'
|
||
),
|
||
|
||
// Function nr. 154
|
||
(
|
||
Name: 'LOG10';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the base-10 logarithm of X.'
|
||
),
|
||
|
||
// Function nr. 155
|
||
(
|
||
Name: 'LOG2';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the base-2 logarithm of X.'
|
||
),
|
||
|
||
// Function nr. 156
|
||
(
|
||
Name: 'LOWER';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string str with all characters changed to lowercase '
|
||
+'according to the current character set mapping. The default is latin1 '
|
||
+'(cp1252 West European). mysql> SELECT LOWER(''QUADRATICALLY''); -> '
|
||
+'''quadratically'' LOWER() (and UPPER()) are ineffective when applied '
|
||
+'to binary strings (BINARY, VARBINARY, BLOB). To perform lettercase '
|
||
+'conversion, convert the string to a nonbinary string: mysql> SET @str '
|
||
+'= BINARY ''New York''; mysql> SELECT LOWER(@str), LOWER(CONVERT(@str '
|
||
+'USING latin1)); +-------------+-----------------------------------+ | '
|
||
+'LOWER(@str) | LOWER(CONVERT(@str USING latin1)) | '
|
||
+'+-------------+-----------------------------------+ | New York | new '
|
||
+'york | +-------------+-----------------------------------+'
|
||
),
|
||
|
||
// Function nr. 157
|
||
(
|
||
Name: 'LPAD';
|
||
Declaration: '(str,len,padstr)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string str, left-padded with the string padstr to a length '
|
||
+'of len characters. If str is longer than len, the return value is '
|
||
+'shortened to len characters.'
|
||
),
|
||
|
||
// Function nr. 158
|
||
(
|
||
Name: 'LTRIM';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string str with leading space characters removed.'
|
||
),
|
||
|
||
// Function nr. 159
|
||
(
|
||
Name: 'MAKEDATE';
|
||
Declaration: '(year,dayofyear)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a date, given year and day-of-year values. dayofyear must be '
|
||
+'greater than 0 or the result is NULL.'
|
||
),
|
||
|
||
// Function nr. 160
|
||
(
|
||
Name: 'MAKETIME';
|
||
Declaration: '(hour,minute,second)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a time value calculated from the hour, minute, and second '
|
||
+'arguments.'
|
||
),
|
||
|
||
// Function nr. 161
|
||
(
|
||
Name: 'MAKE_SET';
|
||
Declaration: '(bits,str1,str2,...)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a set value (a string containing substrings separated by "," '
|
||
+'characters) consisting of the strings that have the corresponding bit '
|
||
+'in bits set. str1 corresponds to bit 0, str2 to bit 1, and so on. NULL '
|
||
+'values in str1, str2, ... are not appended to the result.'
|
||
),
|
||
|
||
// Function nr. 162
|
||
(
|
||
Name: 'MASTER_POS_WAIT';
|
||
Declaration: '(log_name,log_pos[,timeout])';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This function is useful for control of master/slave synchronization. '
|
||
+'It blocks until the slave has read and applied all updates up to the '
|
||
+'specified position in the master log. The return value is the number '
|
||
+'of log events the slave had to wait for to advance to the specified '
|
||
+'position. The function returns NULL if the slave SQL thread is not '
|
||
+'started, the slave''s master information is not initialized, the '
|
||
+'arguments are incorrect, or an error occurs. It returns -1 if the '
|
||
+'timeout has been exceeded. If the slave SQL thread stops while '
|
||
+'MASTER_POS_WAIT() is waiting, the function returns NULL. If the slave '
|
||
+'is past the specified position, the function returns immediately. If a '
|
||
+'timeout value is specified, MASTER_POS_WAIT() stops waiting when '
|
||
+'timeout seconds have elapsed. timeout must be greater than 0; a zero '
|
||
+'or negative timeout means no timeout.'
|
||
),
|
||
|
||
// Function nr. 163
|
||
(
|
||
Name: 'MATCH';
|
||
Declaration: '(col1,col2,...)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'MySQL has support for full-text indexing and searching: A full-text '
|
||
+'index in MySQL is an index of type FULLTEXT. Full-text indexes can be '
|
||
+'used only with MyISAM tables, and can be created only for CHAR, '
|
||
+'VARCHAR, or TEXT columns. A FULLTEXT index definition can be given in '
|
||
+'the CREATE TABLE statement when a table is created, or added later '
|
||
+'using ALTER TABLE or CREATE INDEX. For large data sets, it is much '
|
||
+'faster to load your data into a table that has no FULLTEXT index and '
|
||
+'then create the index after that, than to load data into a table that '
|
||
+'has an existing FULLTEXT index. Full-text searching is performed using '
|
||
+'MATCH() ... AGAINST syntax. MATCH() takes a comma-separated list that '
|
||
+'names the columns to be searched. AGAINST takes a string to search '
|
||
+'for, and an optional modifier that indicates what type of search to '
|
||
+'perform. The search string must be a literal string, not a variable or '
|
||
+'a column name. There are three types of full-text searches: A boolean '
|
||
+'search interprets the search string using the rules of a special query '
|
||
+'language. The string contains the words to search for. It can also '
|
||
+'contain operators that specify requirements such that a word must be '
|
||
+'present or absent in matching rows, or that it should be weighted '
|
||
+'higher or lower than usual. Common words such as "some" or "then" are '
|
||
+'stopwords and do not match if present in the search string. The IN '
|
||
+'BOOLEAN MODE modifier specifies a boolean search. For more '
|
||
+'information, see '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/fulltext-boolean.html. A '
|
||
+'natural language search interprets the search string as a phrase in '
|
||
+'natural human language (a phrase in free text). There are no special '
|
||
+'operators. The stopword list applies. In addition, words that are '
|
||
+'present in 50% or more of the rows are considered common and do not '
|
||
+'match. Full-text searches are natural language searches if the IN '
|
||
+'NATURAL LANGUAGE MODE modifier is given or if no modifier is given. A '
|
||
+'query expansion search is a modification of a natural language search. '
|
||
+'The search string is used to perform a natural language search. Then '
|
||
+'words from the most relevant rows returned by the search are added to '
|
||
+'the search string and the search is done again. The query returns the '
|
||
+'rows from the second search. The IN NATURAL LANGUAGE MODE WITH QUERY '
|
||
+'EXPANSION or WITH QUERY EXPANSION modifier specifies a query expansion '
|
||
+'search. For more information, see '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/fulltext-query-expansion.html. '
|
||
+'The IN NATURAL LANGUAGE MODE and IN NATURAL LANGUAGE MODE WITH QUERY '
|
||
+'EXPANSION modifiers were added in MySQL 5.1.7.'
|
||
),
|
||
|
||
// Function nr. 164
|
||
(
|
||
Name: 'MAX';
|
||
Declaration: '([DISTINCT] expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the maximum value of expr. MAX() may take a string argument; '
|
||
+'in such cases, it returns the maximum string value. See '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/mysql-indexes.html. The '
|
||
+'DISTINCT keyword can be used to find the maximum of the distinct '
|
||
+'values of expr, however, this produces the same result as omitting '
|
||
+'DISTINCT. MAX() returns NULL if there were no matching rows.'
|
||
),
|
||
|
||
// Function nr. 165
|
||
(
|
||
Name: 'MBR';
|
||
Declaration: '(Minimum Bounding Rectangle)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: ''
|
||
),
|
||
|
||
// Function nr. 166
|
||
(
|
||
Name: 'MBRCONTAINS';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether the Minimum Bounding Rectangle of '
|
||
+'g1 contains the Minimum Bounding Rectangle of g2. This tests the '
|
||
+'opposite relationship as MBRWithin().'
|
||
),
|
||
|
||
// Function nr. 167
|
||
(
|
||
Name: 'MBRDISJOINT';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether the Minimum Bounding Rectangles of '
|
||
+'the two geometries g1 and g2 are disjoint (do not intersect).'
|
||
),
|
||
|
||
// Function nr. 168
|
||
(
|
||
Name: 'MBREQUAL';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether the Minimum Bounding Rectangles of '
|
||
+'the two geometries g1 and g2 are the same.'
|
||
),
|
||
|
||
// Function nr. 169
|
||
(
|
||
Name: 'MBRINTERSECTS';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether the Minimum Bounding Rectangles of '
|
||
+'the two geometries g1 and g2 intersect.'
|
||
),
|
||
|
||
// Function nr. 170
|
||
(
|
||
Name: 'MBROVERLAPS';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether the Minimum Bounding Rectangles of '
|
||
+'the two geometries g1 and g2 overlap. The term spatially overlaps is '
|
||
+'used if two geometries intersect and their intersection results in a '
|
||
+'geometry of the same dimension but not equal to either of the given '
|
||
+'geometries.'
|
||
),
|
||
|
||
// Function nr. 171
|
||
(
|
||
Name: 'MBRTOUCHES';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether the Minimum Bounding Rectangles of '
|
||
+'the two geometries g1 and g2 touch. Two geometries spatially touch if '
|
||
+'the interiors of the geometries do not intersect, but the boundary of '
|
||
+'one of the geometries intersects either the boundary or the interior '
|
||
+'of the other.'
|
||
),
|
||
|
||
// Function nr. 172
|
||
(
|
||
Name: 'MBRWITHIN';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether the Minimum Bounding Rectangle of '
|
||
+'g1 is within the Minimum Bounding Rectangle of g2. This tests the '
|
||
+'opposite relationship as MBRContains().'
|
||
),
|
||
|
||
// Function nr. 173
|
||
(
|
||
Name: 'MD5';
|
||
Declaration: '(str)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Calculates an MD5 128-bit checksum for the string. The value is '
|
||
+'returned as a binary string of 32 hex digits, or NULL if the argument '
|
||
+'was NULL. The return value can, for example, be used as a hash key.'
|
||
),
|
||
|
||
// Function nr. 174
|
||
(
|
||
Name: 'MICROSECOND';
|
||
Declaration: '(expr)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the microseconds from the time or datetime expression expr as '
|
||
+'a number in the range from 0 to 999999.'
|
||
),
|
||
|
||
// Function nr. 175
|
||
(
|
||
Name: 'MID';
|
||
Declaration: '(str,pos,len)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'MID(str,pos,len) is a synonym for SUBSTRING(str,pos,len).'
|
||
),
|
||
|
||
// Function nr. 176
|
||
(
|
||
Name: 'MIN';
|
||
Declaration: '([DISTINCT] expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the minimum value of expr. MIN() may take a string argument; '
|
||
+'in such cases, it returns the minimum string value. See '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/mysql-indexes.html. The '
|
||
+'DISTINCT keyword can be used to find the minimum of the distinct '
|
||
+'values of expr, however, this produces the same result as omitting '
|
||
+'DISTINCT. MIN() returns NULL if there were no matching rows.'
|
||
),
|
||
|
||
// Function nr. 177
|
||
(
|
||
Name: 'MINUTE';
|
||
Declaration: '(time)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the minute for time, in the range 0 to 59.'
|
||
),
|
||
|
||
// Function nr. 178
|
||
(
|
||
Name: 'MLINEFROMTEXT';
|
||
Declaration: '(wkt[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a MULTILINESTRING value using its WKT representation and '
|
||
+'SRID.'
|
||
),
|
||
|
||
// Function nr. 179
|
||
(
|
||
Name: 'MLINEFROMWKB';
|
||
Declaration: '(wkb[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a MULTILINESTRING value using its WKB representation and '
|
||
+'SRID.'
|
||
),
|
||
|
||
// Function nr. 180
|
||
(
|
||
Name: 'MOD';
|
||
Declaration: '(N,M)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Modulo operation. Returns the remainder of N divided by M.'
|
||
),
|
||
|
||
// Function nr. 181
|
||
(
|
||
Name: 'MONTH';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the month for date, in the range 1 to 12 for January to '
|
||
+'December, or 0 for dates such as ''0000-00-00'' or ''2008-00-00'' that '
|
||
+'have a zero month part.'
|
||
),
|
||
|
||
// Function nr. 182
|
||
(
|
||
Name: 'MONTHNAME';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the full name of the month for date. As of MySQL 5.1.12, the '
|
||
+'language used for the name is controlled by the value of the '
|
||
+'lc_time_names system variable '
|
||
+'(http://dev.mysql.com/doc/refman/5.1/en/locale-support.html).'
|
||
),
|
||
|
||
// Function nr. 183
|
||
(
|
||
Name: 'MPOINTFROMTEXT';
|
||
Declaration: '(wkt[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a MULTIPOINT value using its WKT representation and SRID.'
|
||
),
|
||
|
||
// Function nr. 184
|
||
(
|
||
Name: 'MPOINTFROMWKB';
|
||
Declaration: '(wkb[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a MULTIPOINT value using its WKB representation and SRID.'
|
||
),
|
||
|
||
// Function nr. 185
|
||
(
|
||
Name: 'MPOLYFROMTEXT';
|
||
Declaration: '(wkt[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a MULTIPOLYGON value using its WKT representation and SRID.'
|
||
),
|
||
|
||
// Function nr. 186
|
||
(
|
||
Name: 'MPOLYFROMWKB';
|
||
Declaration: '(wkb[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a MULTIPOLYGON value using its WKB representation and SRID.'
|
||
),
|
||
|
||
// Function nr. 187
|
||
(
|
||
Name: 'MULTILINESTRING';
|
||
Declaration: '(ls1,ls2,...)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a MultiLineString value using LineString or WKB LineString '
|
||
+'arguments.'
|
||
),
|
||
|
||
// Function nr. 188
|
||
(
|
||
Name: 'MULTIPOINT';
|
||
Declaration: '(pt1,pt2,...)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a MultiPoint value using Point or WKB Point arguments.'
|
||
),
|
||
|
||
// Function nr. 189
|
||
(
|
||
Name: 'MULTIPOLYGON';
|
||
Declaration: '(poly1,poly2,...)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a MultiPolygon value from a set of Polygon or WKB Polygon '
|
||
+'arguments.'
|
||
),
|
||
|
||
// Function nr. 190
|
||
(
|
||
Name: 'NAME_CONST';
|
||
Declaration: '(name,value)';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the given value. When used to produce a result set column, '
|
||
+'NAME_CONST() causes the column to have the given name. The arguments '
|
||
+'should be constants. mysql> SELECT NAME_CONST(''myname'', 14); '
|
||
+'+--------+ | myname | +--------+ | 14 | +--------+'
|
||
),
|
||
|
||
// Function nr. 191
|
||
(
|
||
Name: 'NOT';
|
||
Declaration: '';
|
||
Category: 'Comparison operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This is the same as NOT (expr BETWEEN min AND max).'
|
||
),
|
||
|
||
// Function nr. 192
|
||
(
|
||
Name: 'NOW';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the current date and time as a value in ''YYYY-MM-DD '
|
||
+'HH:MM:SS'' or YYYYMMDDHHMMSS.uuuuuu format, depending on whether the '
|
||
+'function is used in a string or numeric context. The value is '
|
||
+'expressed in the current time zone.'
|
||
),
|
||
|
||
// Function nr. 193
|
||
(
|
||
Name: 'NULLIF';
|
||
Declaration: '(expr1,expr2)';
|
||
Category: 'Control flow functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns NULL if expr1 = expr2 is true, otherwise returns expr1. This '
|
||
+'is the same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END.'
|
||
),
|
||
|
||
// Function nr. 194
|
||
(
|
||
Name: 'NUMINTERIORRINGS';
|
||
Declaration: '(poly)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the number of interior rings in the Polygon value poly.'
|
||
),
|
||
|
||
// Function nr. 195
|
||
(
|
||
Name: 'NUMPOINTS';
|
||
Declaration: '(ls)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the number of Point objects in the LineString value ls.'
|
||
),
|
||
|
||
// Function nr. 196
|
||
(
|
||
Name: 'OCT';
|
||
Declaration: '(N)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a string representation of the octal value of N, where N is a '
|
||
+'longlong (BIGINT) number. This is equivalent to CONV(N,10,8). Returns '
|
||
+'NULL if N is NULL.'
|
||
),
|
||
|
||
// Function nr. 197
|
||
(
|
||
Name: 'OCTET_LENGTH';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'OCTET_LENGTH() is a synonym for LENGTH().'
|
||
),
|
||
|
||
// Function nr. 198
|
||
(
|
||
Name: 'OLD_PASSWORD';
|
||
Declaration: '(str)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'OLD_PASSWORD() was added to MySQL when the implementation of '
|
||
+'PASSWORD() was changed to improve security. OLD_PASSWORD() returns the '
|
||
+'value of the old (pre-4.1) implementation of PASSWORD() as a binary '
|
||
+'string, and is intended to permit you to reset passwords for any '
|
||
+'pre-4.1 clients that need to connect to your version 5.1 MySQL server '
|
||
+'without locking them out. See '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/password-hashing.html.'
|
||
),
|
||
|
||
// Function nr. 199
|
||
(
|
||
Name: 'ORD';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'If the leftmost character of the string str is a multi-byte character, '
|
||
+'returns the code for that character, calculated from the numeric '
|
||
+'values of its constituent bytes using this formula: (1st byte code) + '
|
||
+'(2nd byte code x 256) + (3rd byte code x 2562) ... If the leftmost '
|
||
+'character is not a multi-byte character, ORD() returns the same value '
|
||
+'as the ASCII() function.'
|
||
),
|
||
|
||
// Function nr. 200
|
||
(
|
||
Name: 'OVERLAPS';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether g1 spatially overlaps g2. The term '
|
||
+'spatially overlaps is used if two geometries intersect and their '
|
||
+'intersection results in a geometry of the same dimension but not equal '
|
||
+'to either of the given geometries.'
|
||
),
|
||
|
||
// Function nr. 201
|
||
(
|
||
Name: 'PASSWORD';
|
||
Declaration: '(str)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Calculates and returns a password string from the plaintext password '
|
||
+'str and returns a binary string, or NULL if the argument was NULL. '
|
||
+'This is the function that is used for encrypting MySQL passwords for '
|
||
+'storage in the Password column of the user grant table.'
|
||
),
|
||
|
||
// Function nr. 202
|
||
(
|
||
Name: 'PERIOD_ADD';
|
||
Declaration: '(P,N)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Adds N months to period P (in the format YYMM or YYYYMM). Returns a '
|
||
+'value in the format YYYYMM. Note that the period argument P is not a '
|
||
+'date value.'
|
||
),
|
||
|
||
// Function nr. 203
|
||
(
|
||
Name: 'PERIOD_DIFF';
|
||
Declaration: '(P1,P2)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the number of months between periods P1 and P2. P1 and P2 '
|
||
+'should be in the format YYMM or YYYYMM. Note that the period arguments '
|
||
+'P1 and P2 are not date values.'
|
||
),
|
||
|
||
// Function nr. 204
|
||
(
|
||
Name: 'PI';
|
||
Declaration: '()';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the value of ? (pi). The default number of decimal places '
|
||
+'displayed is seven, but MySQL uses the full double-precision value '
|
||
+'internally.'
|
||
),
|
||
|
||
// Function nr. 205
|
||
(
|
||
Name: 'POINT';
|
||
Declaration: '(x,y)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a Point using its coordinates.'
|
||
),
|
||
|
||
// Function nr. 206
|
||
(
|
||
Name: 'POINTFROMTEXT';
|
||
Declaration: '(wkt[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a POINT value using its WKT representation and SRID.'
|
||
),
|
||
|
||
// Function nr. 207
|
||
(
|
||
Name: 'POINTFROMWKB';
|
||
Declaration: '(wkb[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a POINT value using its WKB representation and SRID.'
|
||
),
|
||
|
||
// Function nr. 208
|
||
(
|
||
Name: 'POINTN';
|
||
Declaration: '(ls,N)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the N-th Point in the Linestring value ls. Points are numbered '
|
||
+'beginning with 1.'
|
||
),
|
||
|
||
// Function nr. 209
|
||
(
|
||
Name: 'POLYFROMTEXT';
|
||
Declaration: '(wkt[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a POLYGON value using its WKT representation and SRID.'
|
||
),
|
||
|
||
// Function nr. 210
|
||
(
|
||
Name: 'POLYFROMWKB';
|
||
Declaration: '(wkb[,srid])';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a POLYGON value using its WKB representation and SRID.'
|
||
),
|
||
|
||
// Function nr. 211
|
||
(
|
||
Name: 'POLYGON';
|
||
Declaration: '(ls1,ls2,...)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Constructs a Polygon value from a number of LineString or WKB '
|
||
+'LineString arguments. If any argument does not represent a LinearRing '
|
||
+'(that is, not a closed and simple LineString), the return value is '
|
||
+'NULL.'
|
||
),
|
||
|
||
// Function nr. 212
|
||
(
|
||
Name: 'POSITION';
|
||
Declaration: '(substr IN str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'POSITION(substr IN str) is a synonym for LOCATE(substr,str).'
|
||
),
|
||
|
||
// Function nr. 213
|
||
(
|
||
Name: 'POW';
|
||
Declaration: '(X,Y)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the value of X raised to the power of Y.'
|
||
),
|
||
|
||
// Function nr. 214
|
||
(
|
||
Name: 'POWER';
|
||
Declaration: '(X,Y)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This is a synonym for POW().'
|
||
),
|
||
|
||
// Function nr. 215
|
||
(
|
||
Name: 'QUARTER';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the quarter of the year for date, in the range 1 to 4.'
|
||
),
|
||
|
||
// Function nr. 216
|
||
(
|
||
Name: 'QUOTE';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Quotes a string to produce a result that can be used as a properly '
|
||
+'escaped data value in an SQL statement. The string is returned '
|
||
+'enclosed by single quotes and with each instance of single quote '
|
||
+'("''"), backslash ("\"), ASCII NUL, and Control-Z preceded by a '
|
||
+'backslash. If the argument is NULL, the return value is the word '
|
||
+'"NULL" without enclosing single quotes.'
|
||
),
|
||
|
||
// Function nr. 217
|
||
(
|
||
Name: 'RADIANS';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the argument X, converted from degrees to radians. (Note that '
|
||
+'? radians equals 180 degrees.)'
|
||
),
|
||
|
||
// Function nr. 218
|
||
(
|
||
Name: 'RAND';
|
||
Declaration: '()';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a random floating-point value v in the range 0 <= v < 1.0. If '
|
||
+'a constant integer argument N is specified, it is used as the seed '
|
||
+'value, which produces a repeatable sequence of column values. In the '
|
||
+'following example, note that the sequences of values produced by '
|
||
+'RAND(3) is the same both places where it occurs.'
|
||
),
|
||
|
||
// Function nr. 219
|
||
(
|
||
Name: 'REGEXP';
|
||
Declaration: '';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Performs a pattern match of a string expression expr against a pattern '
|
||
+'pat. The pattern can be an extended regular expression. The syntax for '
|
||
+'regular expressions is discussed in '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/regexp.html. Returns 1 if expr '
|
||
+'matches pat; otherwise it returns 0. If either expr or pat is NULL, '
|
||
+'the result is NULL. RLIKE is a synonym for REGEXP, provided for mSQL '
|
||
+'compatibility. The pattern need not be a literal string. For example, '
|
||
+'it can be specified as a string expression or table column. *Note*: '
|
||
+'Because MySQL uses the C escape syntax in strings (for example, "\n" '
|
||
+'to represent the newline character), you must double any "\" that you '
|
||
+'use in your REGEXP strings. REGEXP is not case sensitive, except when '
|
||
+'used with binary strings.'
|
||
),
|
||
|
||
// Function nr. 220
|
||
(
|
||
Name: 'RELEASE_LOCK';
|
||
Declaration: '(str)';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Releases the lock named by the string str that was obtained with '
|
||
+'GET_LOCK(). Returns 1 if the lock was released, 0 if the lock was not '
|
||
+'established by this thread (in which case the lock is not released), '
|
||
+'and NULL if the named lock did not exist. The lock does not exist if '
|
||
+'it was never obtained by a call to GET_LOCK() or if it has previously '
|
||
+'been released. The DO statement is convenient to use with '
|
||
+'RELEASE_LOCK(). See [HELP DO].'
|
||
),
|
||
|
||
// Function nr. 221
|
||
(
|
||
Name: 'REPEAT';
|
||
Declaration: '(str,count)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a string consisting of the string str repeated count times. If '
|
||
+'count is less than 1, returns an empty string. Returns NULL if str or '
|
||
+'count are NULL.'
|
||
),
|
||
|
||
// Function nr. 222
|
||
(
|
||
Name: 'REPLACE';
|
||
Declaration: '(str,from_str,to_str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string str with all occurrences of the string from_str '
|
||
+'replaced by the string to_str. REPLACE() performs a case-sensitive '
|
||
+'match when searching for from_str.'
|
||
),
|
||
|
||
// Function nr. 223
|
||
(
|
||
Name: 'REVERSE';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string str with the order of the characters reversed.'
|
||
),
|
||
|
||
// Function nr. 224
|
||
(
|
||
Name: 'RIGHT';
|
||
Declaration: '(str,len)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the rightmost len characters from the string str, or NULL if '
|
||
+'any argument is NULL.'
|
||
),
|
||
|
||
// Function nr. 225
|
||
(
|
||
Name: 'ROUND';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Rounds the argument X to D decimal places. The rounding algorithm '
|
||
+'depends on the data type of X. D defaults to 0 if not specified. D can '
|
||
+'be negative to cause D digits left of the decimal point of the value X '
|
||
+'to become zero.'
|
||
),
|
||
|
||
// Function nr. 226
|
||
(
|
||
Name: 'ROW_COUNT';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'ROW_COUNT() returns the number of rows updated, inserted, or deleted '
|
||
+'by the preceding statement. This is the same as the row count that the '
|
||
+'mysql client displays and the value from the mysql_affected_rows() C '
|
||
+'API function.'
|
||
),
|
||
|
||
// Function nr. 227
|
||
(
|
||
Name: 'RPAD';
|
||
Declaration: '(str,len,padstr)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string str, right-padded with the string padstr to a '
|
||
+'length of len characters. If str is longer than len, the return value '
|
||
+'is shortened to len characters.'
|
||
),
|
||
|
||
// Function nr. 228
|
||
(
|
||
Name: 'RTRIM';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string str with trailing space characters removed.'
|
||
),
|
||
|
||
// Function nr. 229
|
||
(
|
||
Name: 'SCHEMA';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This function is a synonym for DATABASE().'
|
||
),
|
||
|
||
// Function nr. 230
|
||
(
|
||
Name: 'SECOND';
|
||
Declaration: '(time)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the second for time, in the range 0 to 59.'
|
||
),
|
||
|
||
// Function nr. 231
|
||
(
|
||
Name: 'SEC_TO_TIME';
|
||
Declaration: '(seconds)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the seconds argument, converted to hours, minutes, and '
|
||
+'seconds, as a TIME value. The range of the result is constrained to '
|
||
+'that of the TIME data type. A warning occurs if the argument '
|
||
+'corresponds to a value outside that range.'
|
||
),
|
||
|
||
// Function nr. 232
|
||
(
|
||
Name: 'SESSION_USER';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'SESSION_USER() is a synonym for USER().'
|
||
),
|
||
|
||
// Function nr. 233
|
||
(
|
||
Name: 'SHA1';
|
||
Declaration: '(str)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Calculates an SHA-1 160-bit checksum for the string, as described in '
|
||
+'RFC 3174 (Secure Hash Algorithm). The value is returned as a binary '
|
||
+'string of 40 hex digits, or NULL if the argument was NULL. One of the '
|
||
+'possible uses for this function is as a hash key. You can also use it '
|
||
+'as a cryptographic function for storing passwords. SHA() is synonymous '
|
||
+'with SHA1().'
|
||
),
|
||
|
||
// Function nr. 234
|
||
(
|
||
Name: 'SIGN';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the sign of the argument as -1, 0, or 1, depending on whether '
|
||
+'X is negative, zero, or positive.'
|
||
),
|
||
|
||
// Function nr. 235
|
||
(
|
||
Name: 'SIN';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the sine of X, where X is given in radians.'
|
||
),
|
||
|
||
// Function nr. 236
|
||
(
|
||
Name: 'SLEEP';
|
||
Declaration: '(duration)';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Sleeps (pauses) for the number of seconds given by the duration '
|
||
+'argument, then returns 0. If SLEEP() is interrupted, it returns 1. The '
|
||
+'duration may have a fractional part given in microseconds.'
|
||
),
|
||
|
||
// Function nr. 237
|
||
(
|
||
Name: 'SOUNDEX';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a soundex string from str. Two strings that sound almost the '
|
||
+'same should have identical soundex strings. A standard soundex string '
|
||
+'is four characters long, but the SOUNDEX() function returns an '
|
||
+'arbitrarily long string. You can use SUBSTRING() on the result to get '
|
||
+'a standard soundex string. All nonalphabetic characters in str are '
|
||
+'ignored. All international alphabetic characters outside the A-Z range '
|
||
+'are treated as vowels. *Important*: When using SOUNDEX(), you should '
|
||
+'be aware of the following limitations: This function, as currently '
|
||
+'implemented, is intended to work well with strings that are in the '
|
||
+'English language only. Strings in other languages may not produce '
|
||
+'reliable results. This function is not guaranteed to provide '
|
||
+'consistent results with strings that use multi-byte character sets, '
|
||
+'including utf-8. We hope to remove these limitations in a future '
|
||
+'release. See Bug#22638 (http://bugs.mysql.com/bug.php?id=22638) for '
|
||
+'more information.'
|
||
),
|
||
|
||
// Function nr. 238
|
||
(
|
||
Name: 'SOUNDS';
|
||
Declaration: '';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This is the same as SOUNDEX(expr1) = SOUNDEX(expr2).'
|
||
),
|
||
|
||
// Function nr. 239
|
||
(
|
||
Name: 'SPACE';
|
||
Declaration: '(N)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a string consisting of N space characters.'
|
||
),
|
||
|
||
// Function nr. 240
|
||
(
|
||
Name: 'SPATIAL';
|
||
Declaration: '';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'o With CREATE TABLE: CREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL '
|
||
+'INDEX(g)); With ALTER TABLE: ALTER TABLE geom ADD SPATIAL INDEX(g); '
|
||
+'With CREATE INDEX: CREATE SPATIAL INDEX sp_index ON geom (g); For '
|
||
+'MyISAM tables, SPATIAL INDEX creates an R-tree index. For storage '
|
||
+'engines that support nonspatial indexing of spatial columns, the '
|
||
+'engine creates a B-tree index. A B-tree index on spatial values will '
|
||
+'be useful for exact-value lookups, but not for range scans. For more '
|
||
+'information on indexing spatial columns, see [HELP CREATE INDEX]. To '
|
||
+'drop spatial indexes, use ALTER TABLE or DROP INDEX: With ALTER TABLE: '
|
||
+'ALTER TABLE geom DROP INDEX g; With DROP INDEX: DROP INDEX sp_index ON '
|
||
+'geom; Example: Suppose that a table geom contains more than 32,000 '
|
||
+'geometries, which are stored in the column g of type GEOMETRY. The '
|
||
+'table also has an AUTO_INCREMENT column fid for storing object ID '
|
||
+'values.'
|
||
),
|
||
|
||
// Function nr. 241
|
||
(
|
||
Name: 'SQRT';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the square root of a nonnegative number X.'
|
||
),
|
||
|
||
// Function nr. 242
|
||
(
|
||
Name: 'SRID';
|
||
Declaration: '(g)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns an integer indicating the Spatial Reference System ID for the '
|
||
+'geometry value g. In MySQL, the SRID value is just an integer '
|
||
+'associated with the geometry value. All calculations are done assuming '
|
||
+'Euclidean (planar) geometry.'
|
||
),
|
||
|
||
// Function nr. 243
|
||
(
|
||
Name: 'STARTPOINT';
|
||
Declaration: '(ls)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the Point that is the start point of the LineString value ls.'
|
||
),
|
||
|
||
// Function nr. 244
|
||
(
|
||
Name: 'STD';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the population standard deviation of expr. This is an '
|
||
+'extension to standard SQL. The standard SQL function STDDEV_POP() can '
|
||
+'be used instead. This function returns NULL if there were no matching '
|
||
+'rows.'
|
||
),
|
||
|
||
// Function nr. 245
|
||
(
|
||
Name: 'STDDEV';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the population standard deviation of expr. This function is '
|
||
+'provided for compatibility with Oracle. The standard SQL function '
|
||
+'STDDEV_POP() can be used instead. This function returns NULL if there '
|
||
+'were no matching rows.'
|
||
),
|
||
|
||
// Function nr. 246
|
||
(
|
||
Name: 'STDDEV_POP';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the population standard deviation of expr (the square root of '
|
||
+'VAR_POP()). You can also use STD() or STDDEV(), which are equivalent '
|
||
+'but not standard SQL. STDDEV_POP() returns NULL if there were no '
|
||
+'matching rows.'
|
||
),
|
||
|
||
// Function nr. 247
|
||
(
|
||
Name: 'STDDEV_SAMP';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the sample standard deviation of expr (the square root of '
|
||
+'VAR_SAMP(). STDDEV_SAMP() returns NULL if there were no matching rows.'
|
||
),
|
||
|
||
// Function nr. 248
|
||
(
|
||
Name: 'STRCMP';
|
||
Declaration: '(expr1,expr2)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'STRCMP() returns 0 if the strings are the same, -1 if the first '
|
||
+'argument is smaller than the second according to the current sort '
|
||
+'order, and 1 otherwise.'
|
||
),
|
||
|
||
// Function nr. 249
|
||
(
|
||
Name: 'STR_TO_DATE';
|
||
Declaration: '(str,format)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This is the inverse of the DATE_FORMAT() function. It takes a string '
|
||
+'str and a format string format. STR_TO_DATE() returns a DATETIME value '
|
||
+'if the format string contains both date and time parts, or a DATE or '
|
||
+'TIME value if the string contains only date or time parts. If the '
|
||
+'date, time, or datetime value extracted from str is illegal, '
|
||
+'STR_TO_DATE() returns NULL and produces a warning. The server scans '
|
||
+'str attempting to match format to it. The format string can contain '
|
||
+'literal characters and format specifiers beginning with %. Literal '
|
||
+'characters in format must match literally in str. Format specifiers in '
|
||
+'format must match a date or time part in str. For the specifiers that '
|
||
+'can be used in format, see the DATE_FORMAT() function description. '
|
||
+'mysql> SELECT STR_TO_DATE(''01,5,2013'',''%d,%m,%Y''); -> '
|
||
+'''2013-05-01'' mysql> SELECT STR_TO_DATE(''May 1, 2013'',''%M '
|
||
+'%d,%Y''); -> ''2013-05-01'' Scanning starts at the beginning of str '
|
||
+'and fails if format is found not to match. Extra characters at the end '
|
||
+'of str are ignored. mysql> SELECT '
|
||
+'STR_TO_DATE(''a09:30:17'',''a%h:%i:%s''); -> ''09:30:17'' mysql> '
|
||
+'SELECT STR_TO_DATE(''a09:30:17'',''%h:%i:%s''); -> NULL mysql> SELECT '
|
||
+'STR_TO_DATE(''09:30:17a'',''%h:%i:%s''); -> ''09:30:17'' Unspecified '
|
||
+'date or time parts have a value of 0, so incompletely specified values '
|
||
+'in str produce a result with some or all parts set to 0: mysql> SELECT '
|
||
+'STR_TO_DATE(''abc'',''abc''); -> ''0000-00-00'' mysql> SELECT '
|
||
+'STR_TO_DATE(''9'',''%m''); -> ''0000-09-00'' mysql> SELECT '
|
||
+'STR_TO_DATE(''9'',''%s''); -> ''00:00:09'''
|
||
),
|
||
|
||
// Function nr. 250
|
||
(
|
||
Name: 'SUBDATE';
|
||
Declaration: '(date,INTERVAL expr unit)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'When invoked with the INTERVAL form of the second argument, SUBDATE() '
|
||
+'is a synonym for DATE_SUB(). For information on the INTERVAL unit '
|
||
+'argument, see the discussion for DATE_ADD(). mysql> SELECT '
|
||
+'DATE_SUB(''2008-01-02'', INTERVAL 31 DAY); -> ''2007-12-02'' mysql> '
|
||
+'SELECT SUBDATE(''2008-01-02'', INTERVAL 31 DAY); -> ''2007-12-02'' The '
|
||
+'second form allows the use of an integer value for days. In such '
|
||
+'cases, it is interpreted as the number of days to be subtracted from '
|
||
+'the date or datetime expression expr. mysql> SELECT '
|
||
+'SUBDATE(''2008-01-02 12:00:00'', 31); -> ''2007-12-02 12:00:00'''
|
||
),
|
||
|
||
// Function nr. 251
|
||
(
|
||
Name: 'SUBSTR';
|
||
Declaration: '(str,pos)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'SUBSTR() is a synonym for SUBSTRING().'
|
||
),
|
||
|
||
// Function nr. 252
|
||
(
|
||
Name: 'SUBSTRING';
|
||
Declaration: '(str,pos)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'The forms without a len argument return a substring from string str '
|
||
+'starting at position pos. The forms with a len argument return a '
|
||
+'substring len characters long from string str, starting at position '
|
||
+'pos. The forms that use FROM are standard SQL syntax. It is also '
|
||
+'possible to use a negative value for pos. In this case, the beginning '
|
||
+'of the substring is pos characters from the end of the string, rather '
|
||
+'than the beginning. A negative value may be used for pos in any of the '
|
||
+'forms of this function. For all forms of SUBSTRING(), the position of '
|
||
+'the first character in the string from which the substring is to be '
|
||
+'extracted is reckoned as 1.'
|
||
),
|
||
|
||
// Function nr. 253
|
||
(
|
||
Name: 'SUBSTRING_INDEX';
|
||
Declaration: '(str,delim,count)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the substring from string str before count occurrences of the '
|
||
+'delimiter delim. If count is positive, everything to the left of the '
|
||
+'final delimiter (counting from the left) is returned. If count is '
|
||
+'negative, everything to the right of the final delimiter (counting '
|
||
+'from the right) is returned. SUBSTRING_INDEX() performs a '
|
||
+'case-sensitive match when searching for delim.'
|
||
),
|
||
|
||
// Function nr. 254
|
||
(
|
||
Name: 'SUBTIME';
|
||
Declaration: '(expr1,expr2)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'SUBTIME() returns expr1 - expr2 expressed as a value in the same '
|
||
+'format as expr1. expr1 is a time or datetime expression, and expr2 is '
|
||
+'a time expression.'
|
||
),
|
||
|
||
// Function nr. 255
|
||
(
|
||
Name: 'SUM';
|
||
Declaration: '([DISTINCT] expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the sum of expr. If the return set has no rows, SUM() returns '
|
||
+'NULL. The DISTINCT keyword can be used in MySQL 5.1 to sum only the '
|
||
+'distinct values of expr. SUM() returns NULL if there were no matching '
|
||
+'rows.'
|
||
),
|
||
|
||
// Function nr. 256
|
||
(
|
||
Name: 'SYSDATE';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the current date and time as a value in ''YYYY-MM-DD '
|
||
+'HH:MM:SS'' or YYYYMMDDHHMMSS.uuuuuu format, depending on whether the '
|
||
+'function is used in a string or numeric context. SYSDATE() returns the '
|
||
+'time at which it executes. This differs from the behavior for NOW(), '
|
||
+'which returns a constant time that indicates the time at which the '
|
||
+'statement began to execute. (Within a stored function or trigger, '
|
||
+'NOW() returns the time at which the function or triggering statement '
|
||
+'began to execute.) mysql> SELECT NOW(), SLEEP(2), NOW(); '
|
||
+'+---------------------+----------+---------------------+ | NOW() | '
|
||
+'SLEEP(2) | NOW() | '
|
||
+'+---------------------+----------+---------------------+ | 2006-04-12 '
|
||
+'13:47:36 | 0 | 2006-04-12 13:47:36 | '
|
||
+'+---------------------+----------+---------------------+ mysql> SELECT '
|
||
+'SYSDATE(), SLEEP(2), SYSDATE(); '
|
||
+'+---------------------+----------+---------------------+ | SYSDATE() | '
|
||
+'SLEEP(2) | SYSDATE() | '
|
||
+'+---------------------+----------+---------------------+ | 2006-04-12 '
|
||
+'13:47:44 | 0 | 2006-04-12 13:47:46 | '
|
||
+'+---------------------+----------+---------------------+ In addition, '
|
||
+'the SET TIMESTAMP statement affects the value returned by NOW() but '
|
||
+'not by SYSDATE(). This means that timestamp settings in the binary log '
|
||
+'have no effect on invocations of SYSDATE(). Because SYSDATE() can '
|
||
+'return different values even within the same statement, and is not '
|
||
+'affected by SET TIMESTAMP, it is nondeterministic and therefore unsafe '
|
||
+'for replication if statement-based binary logging is used. If that is '
|
||
+'a problem, you can use row-based logging. Alternatively, you can use '
|
||
+'the --sysdate-is-now option to cause SYSDATE() to be an alias for '
|
||
+'NOW(). This works if the option is used on both the master and the '
|
||
+'slave. The nondeterministic nature of SYSDATE() also means that '
|
||
+'indexes cannot be used for evaluating expressions that refer to it. '
|
||
+'Beginning with MySQL 5.1.42, a warning is logged if you use this '
|
||
+'function when binlog_format is set to STATEMENT. (Bug#47995 '
|
||
+'(http://bugs.mysql.com/bug.php?id=47995))'
|
||
),
|
||
|
||
// Function nr. 257
|
||
(
|
||
Name: 'SYSTEM_USER';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'SYSTEM_USER() is a synonym for USER().'
|
||
),
|
||
|
||
// Function nr. 258
|
||
(
|
||
Name: 'TAN';
|
||
Declaration: '(X)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the tangent of X, where X is given in radians.'
|
||
),
|
||
|
||
// Function nr. 259
|
||
(
|
||
Name: 'TIME';
|
||
Declaration: '(expr)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Extracts the time part of the time or datetime expression expr and '
|
||
+'returns it as a string.'
|
||
),
|
||
|
||
// Function nr. 260
|
||
(
|
||
Name: 'TIMEDIFF';
|
||
Declaration: '(expr1,expr2)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'TIMEDIFF() returns expr1 - expr2 expressed as a time value. expr1 and '
|
||
+'expr2 are time or date-and-time expressions, but both must be of the '
|
||
+'same type.'
|
||
),
|
||
|
||
// Function nr. 261
|
||
(
|
||
Name: 'TIMESTAMP';
|
||
Declaration: '(expr)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'With a single argument, this function returns the date or datetime '
|
||
+'expression expr as a datetime value. With two arguments, it adds the '
|
||
+'time expression expr2 to the date or datetime expression expr1 and '
|
||
+'returns the result as a datetime value.'
|
||
),
|
||
|
||
// Function nr. 262
|
||
(
|
||
Name: 'TIMESTAMPADD';
|
||
Declaration: '(unit,interval,datetime_expr)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Adds the integer expression interval to the date or datetime '
|
||
+'expression datetime_expr. The unit for interval is given by the unit '
|
||
+'argument, which should be one of the following values: FRAC_SECOND '
|
||
+'(microseconds), SECOND, MINUTE, HOUR, DAY, WEEK, MONTH, QUARTER, or '
|
||
+'YEAR. Beginning with MySQL 5.1.24, it is possible to use MICROSECOND '
|
||
+'in place of FRAC_SECOND with this function, and FRAC_SECOND is '
|
||
+'deprecated. The unit value may be specified using one of keywords as '
|
||
+'shown, or with a prefix of SQL_TSI_. For example, DAY and SQL_TSI_DAY '
|
||
+'both are legal.'
|
||
),
|
||
|
||
// Function nr. 263
|
||
(
|
||
Name: 'TIMESTAMPDIFF';
|
||
Declaration: '(unit,datetime_expr1,datetime_expr2)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns datetime_expr2 - datetime_expr1, where datetime_expr1 and '
|
||
+'datetime_expr2 are date or datetime expressions. One expression may be '
|
||
+'a date and the other a datetime; a date value is treated as a datetime '
|
||
+'having the time part ''00:00:00'' where necessary. The unit for the '
|
||
+'result (an integer) is given by the unit argument. The legal values '
|
||
+'for unit are the same as those listed in the description of the '
|
||
+'TIMESTAMPADD() function.'
|
||
),
|
||
|
||
// Function nr. 264
|
||
(
|
||
Name: 'TIME_FORMAT';
|
||
Declaration: '(time,format)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This is used like the DATE_FORMAT() function, but the format string '
|
||
+'may contain format specifiers only for hours, minutes, seconds, and '
|
||
+'microseconds. Other specifiers produce a NULL value or 0.'
|
||
),
|
||
|
||
// Function nr. 265
|
||
(
|
||
Name: 'TIME_TO_SEC';
|
||
Declaration: '(time)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the time argument, converted to seconds.'
|
||
),
|
||
|
||
// Function nr. 266
|
||
(
|
||
Name: 'TOUCHES';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether g1 spatially touches g2. Two '
|
||
+'geometries spatially touch if the interiors of the geometries do not '
|
||
+'intersect, but the boundary of one of the geometries intersects either '
|
||
+'the boundary or the interior of the other.'
|
||
),
|
||
|
||
// Function nr. 267
|
||
(
|
||
Name: 'TO_DAYS';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Given a date date, returns a day number (the number of days since year '
|
||
+'0).'
|
||
),
|
||
|
||
// Function nr. 268
|
||
(
|
||
Name: 'TRIM';
|
||
Declaration: '([{BOTH | LEADING | TRAILING} [remstr] FROM] str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string str with all remstr prefixes or suffixes removed. '
|
||
+'If none of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is '
|
||
+'assumed. remstr is optional and, if not specified, spaces are removed.'
|
||
),
|
||
|
||
// Function nr. 269
|
||
(
|
||
Name: 'TRUNCATE';
|
||
Declaration: '(X,D)';
|
||
Category: 'Numeric Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the number X, truncated to D decimal places. If D is 0, the '
|
||
+'result has no decimal point or fractional part. D can be negative to '
|
||
+'cause D digits left of the decimal point of the value X to become '
|
||
+'zero.'
|
||
),
|
||
|
||
// Function nr. 270
|
||
(
|
||
Name: 'UCASE';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'UCASE() is a synonym for UPPER().'
|
||
),
|
||
|
||
// Function nr. 271
|
||
(
|
||
Name: 'UNCOMPRESS';
|
||
Declaration: '(string_to_uncompress)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Uncompresses a string compressed by the COMPRESS() function. If the '
|
||
+'argument is not a compressed value, the result is NULL. This function '
|
||
+'requires MySQL to have been compiled with a compression library such '
|
||
+'as zlib. Otherwise, the return value is always NULL.'
|
||
),
|
||
|
||
// Function nr. 272
|
||
(
|
||
Name: 'UNCOMPRESSED_LENGTH';
|
||
Declaration: '(compressed_string)';
|
||
Category: 'Encryption Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the length that the compressed string had before being '
|
||
+'compressed.'
|
||
),
|
||
|
||
// Function nr. 273
|
||
(
|
||
Name: 'UNHEX';
|
||
Declaration: '';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'UNHEX(str) Performs the inverse operation of HEX(str). That is, it '
|
||
+'interprets each pair of hexadecimal digits in the argument as a number '
|
||
+'and converts it to the character represented by the number. The '
|
||
+'resulting characters are returned as a binary string.'
|
||
),
|
||
|
||
// Function nr. 274
|
||
(
|
||
Name: 'UNIX_TIMESTAMP';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'If called with no argument, returns a Unix timestamp (seconds since '
|
||
+'''1970-01-01 00:00:00'' UTC) as an unsigned integer. If '
|
||
+'UNIX_TIMESTAMP() is called with a date argument, it returns the value '
|
||
+'of the argument as seconds since ''1970-01-01 00:00:00'' UTC. date may '
|
||
+'be a DATE string, a DATETIME string, a TIMESTAMP, or a number in the '
|
||
+'format YYMMDD or YYYYMMDD. The server interprets date as a value in '
|
||
+'the current time zone and converts it to an internal value in UTC. '
|
||
+'Clients can set their time zone as described in '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/time-zone-support.html.'
|
||
),
|
||
|
||
// Function nr. 275
|
||
(
|
||
Name: 'UPDATEXML';
|
||
Declaration: '(xml_target, xpath_expr, new_xml)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This function replaces a single portion of a given fragment of XML '
|
||
+'markup xml_target with a new XML fragment new_xml, and then returns '
|
||
+'the changed XML. The portion of xml_target that is replaced matches an '
|
||
+'XPath expression xpath_expr supplied by the user. If no expression '
|
||
+'matching xpath_expr is found, or if multiple matches are found, the '
|
||
+'function returns the original xml_target XML fragment. All three '
|
||
+'arguments should be strings.'
|
||
),
|
||
|
||
// Function nr. 276
|
||
(
|
||
Name: 'UPPER';
|
||
Declaration: '(str)';
|
||
Category: 'String Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the string str with all characters changed to uppercase '
|
||
+'according to the current character set mapping. The default is latin1 '
|
||
+'(cp1252 West European). mysql> SELECT UPPER(''Hej''); -> ''HEJ'' '
|
||
+'UPPER() is ineffective when applied to binary strings (BINARY, '
|
||
+'VARBINARY, BLOB). The description of LOWER() shows how to perform '
|
||
+'lettercase conversion of binary strings.'
|
||
),
|
||
|
||
// Function nr. 277
|
||
(
|
||
Name: 'USER';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the current MySQL user name and host name as a string in the '
|
||
+'utf8 character set.'
|
||
),
|
||
|
||
// Function nr. 278
|
||
(
|
||
Name: 'UTC_DATE';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the current UTC date as a value in ''YYYY-MM-DD'' or YYYYMMDD '
|
||
+'format, depending on whether the function is used in a string or '
|
||
+'numeric context.'
|
||
),
|
||
|
||
// Function nr. 279
|
||
(
|
||
Name: 'UTC_TIME';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the current UTC time as a value in ''HH:MM:SS'' or '
|
||
+'HHMMSS.uuuuuu format, depending on whether the function is used in a '
|
||
+'string or numeric context.'
|
||
),
|
||
|
||
// Function nr. 280
|
||
(
|
||
Name: 'UTC_TIMESTAMP';
|
||
Declaration: '()';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the current UTC date and time as a value in ''YYYY-MM-DD '
|
||
+'HH:MM:SS'' or YYYYMMDDHHMMSS.uuuuuu format, depending on whether the '
|
||
+'function is used in a string or numeric context.'
|
||
),
|
||
|
||
// Function nr. 281
|
||
(
|
||
Name: 'UUID';
|
||
Declaration: '()';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a Universal Unique Identifier (UUID) generated according to '
|
||
+'"DCE 1.1: Remote Procedure Call" (Appendix A) CAE (Common Applications '
|
||
+'Environment) Specifications published by The Open Group in October '
|
||
+'1997 (Document Number C706, '
|
||
+'http://www.opengroup.org/public/pubs/catalog/c706.htm). A UUID is '
|
||
+'designed as a number that is globally unique in space and time. Two '
|
||
+'calls to UUID() are expected to generate two different values, even if '
|
||
+'these calls are performed on two separate computers that are not '
|
||
+'connected to each other. A UUID is a 128-bit number represented by a '
|
||
+'utf8 string of five hexadecimal numbers in '
|
||
+'aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee format: The first three numbers '
|
||
+'are generated from a timestamp. The fourth number preserves temporal '
|
||
+'uniqueness in case the timestamp value loses monotonicity (for '
|
||
+'example, due to daylight saving time). The fifth number is an IEEE 802 '
|
||
+'node number that provides spatial uniqueness. A random number is '
|
||
+'substituted if the latter is not available (for example, because the '
|
||
+'host computer has no Ethernet card, or we do not know how to find the '
|
||
+'hardware address of an interface on your operating system). In this '
|
||
+'case, spatial uniqueness cannot be guaranteed. Nevertheless, a '
|
||
+'collision should have very low probability. Currently, the MAC address '
|
||
+'of an interface is taken into account only on FreeBSD and Linux. On '
|
||
+'other operating systems, MySQL uses a randomly generated 48-bit '
|
||
+'number.'
|
||
),
|
||
|
||
// Function nr. 282
|
||
(
|
||
Name: 'UUID_SHORT';
|
||
Declaration: '()';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a "short" universal identifier as a 64-bit unsigned integer '
|
||
+'(rather than a string-form 128-bit identifier as returned by the '
|
||
+'UUID() function). The value of UUID_SHORT() is guaranteed to be unique '
|
||
+'if the following conditions hold: The server_id of the current host is '
|
||
+'unique among your set of master and slave servers server_id is between '
|
||
+'0 and 255 You don''t set back your system time for your server between '
|
||
+'mysqld restarts You do not invoke UUID_SHORT() on average more than 16 '
|
||
+'million times per second between mysqld restarts The UUID_SHORT() '
|
||
+'return value is constructed this way: (server_id & 255) << 56 + '
|
||
+'(server_startup_time_in_seconds << 24) + incremented_variable++;'
|
||
),
|
||
|
||
// Function nr. 283
|
||
(
|
||
Name: 'VALUES';
|
||
Declaration: '(col_name)';
|
||
Category: 'Miscellaneous Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'In an INSERT ... ON DUPLICATE KEY UPDATE statement, you can use the '
|
||
+'VALUES(col_name) function in the UPDATE clause to refer to column '
|
||
+'values from the INSERT portion of the statement. In other words, '
|
||
+'VALUES(col_name) in the UPDATE clause refers to the value of col_name '
|
||
+'that would be inserted, had no duplicate-key conflict occurred. This '
|
||
+'function is especially useful in multiple-row inserts. The VALUES() '
|
||
+'function is meaningful only in INSERT ... ON DUPLICATE KEY UPDATE '
|
||
+'statements and returns NULL otherwise. '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/insert-on-duplicate.html.'
|
||
),
|
||
|
||
// Function nr. 284
|
||
(
|
||
Name: 'VARIANCE';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the population standard variance of expr. This is an extension '
|
||
+'to standard SQL. The standard SQL function VAR_POP() can be used '
|
||
+'instead. VARIANCE() returns NULL if there were no matching rows.'
|
||
),
|
||
|
||
// Function nr. 285
|
||
(
|
||
Name: 'VAR_POP';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the population standard variance of expr. It considers rows as '
|
||
+'the whole population, not as a sample, so it has the number of rows as '
|
||
+'the denominator. You can also use VARIANCE(), which is equivalent but '
|
||
+'is not standard SQL. VAR_POP() returns NULL if there were no matching '
|
||
+'rows.'
|
||
),
|
||
|
||
// Function nr. 286
|
||
(
|
||
Name: 'VAR_SAMP';
|
||
Declaration: '(expr)';
|
||
Category: 'Functions and Modifiers for Use with GROUP BY';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the sample variance of expr. That is, the denominator is the '
|
||
+'number of rows minus one. VAR_SAMP() returns NULL if there were no '
|
||
+'matching rows.'
|
||
),
|
||
|
||
// Function nr. 287
|
||
(
|
||
Name: 'VERSION';
|
||
Declaration: '()';
|
||
Category: 'Information Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns a string that indicates the MySQL server version. The string '
|
||
+'uses the utf8 character set.'
|
||
),
|
||
|
||
// Function nr. 288
|
||
(
|
||
Name: 'WEEK';
|
||
Declaration: '(date[,mode])';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'This function returns the week number for date. The two-argument form '
|
||
+'of WEEK() allows you to specify whether the week starts on Sunday or '
|
||
+'Monday and whether the return value should be in the range from 0 to '
|
||
+'53 or from 1 to 53. If the mode argument is omitted, the value of the '
|
||
+'default_week_format system variable is used. See '
|
||
+'http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html.'
|
||
),
|
||
|
||
// Function nr. 289
|
||
(
|
||
Name: 'WEEKDAY';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 = '
|
||
+'Sunday).'
|
||
),
|
||
|
||
// Function nr. 290
|
||
(
|
||
Name: 'WEEKOFYEAR';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the calendar week of the date as a number in the range from 1 '
|
||
+'to 53. WEEKOFYEAR() is a compatibility function that is equivalent to '
|
||
+'WEEK(date,3).'
|
||
),
|
||
|
||
// Function nr. 291
|
||
(
|
||
Name: 'WITHIN';
|
||
Declaration: '(g1,g2)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns 1 or 0 to indicate whether g1 is spatially within g2. This '
|
||
+'tests the opposite relationship as Contains().'
|
||
),
|
||
|
||
// Function nr. 292
|
||
(
|
||
Name: 'WKT';
|
||
Declaration: '(WKT)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: ''
|
||
),
|
||
|
||
// Function nr. 293
|
||
(
|
||
Name: 'X';
|
||
Declaration: '(p)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the X-coordinate value for the point p as a double-precision '
|
||
+'number.'
|
||
),
|
||
|
||
// Function nr. 294
|
||
(
|
||
Name: 'XOR';
|
||
Declaration: '';
|
||
Category: 'Logical operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Logical XOR. Returns NULL if either operand is NULL. For non-NULL '
|
||
+'operands, evaluates to 1 if an odd number of operands is nonzero, '
|
||
+'otherwise 0 is returned.'
|
||
),
|
||
|
||
// Function nr. 295
|
||
(
|
||
Name: 'Y';
|
||
Declaration: '(p)';
|
||
Category: 'Geographic Features';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the Y-coordinate value for the point p as a double-precision '
|
||
+'number.'
|
||
),
|
||
|
||
// Function nr. 296
|
||
(
|
||
Name: 'YEAR';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns the year for date, in the range 1000 to 9999, or 0 for the '
|
||
+'"zero" date.'
|
||
),
|
||
|
||
// Function nr. 297
|
||
(
|
||
Name: 'YEARWEEK';
|
||
Declaration: '(date)';
|
||
Category: 'Date and Time Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Returns year and week for a date. The mode argument works exactly like '
|
||
+'the mode argument to WEEK(). The year in the result may be different '
|
||
+'from the year in the date argument for the first and the last week of '
|
||
+'the year.'
|
||
),
|
||
|
||
// Function nr. 298
|
||
(
|
||
Name: '^';
|
||
Declaration: '';
|
||
Category: 'Bit Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Bitwise XOR:'
|
||
),
|
||
|
||
// Function nr. 299
|
||
(
|
||
Name: '|';
|
||
Declaration: '';
|
||
Category: 'Bit Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Bitwise OR:'
|
||
),
|
||
|
||
// Function nr. 300
|
||
(
|
||
Name: '||';
|
||
Declaration: '';
|
||
Category: 'Logical operators';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Logical OR. When both operands are non-NULL, the result is 1 if any '
|
||
+'operand is nonzero, and 0 otherwise. With a NULL operand, the result '
|
||
+'is 1 if the other operand is nonzero, and NULL otherwise. If both '
|
||
+'operands are NULL, the result is NULL.'
|
||
),
|
||
|
||
// Function nr. 301
|
||
(
|
||
Name: '~';
|
||
Declaration: '';
|
||
Category: 'Bit Functions';
|
||
Version: SQL_VERSION_ANSI;
|
||
Description: 'Invert all bits.'
|
||
)
|
||
|
||
);
|
||
|
||
|
||
MySQLVariables: array [0..417] of TServerVariable =
|
||
(
|
||
(
|
||
Name: 'auto_increment_increment';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'auto_increment_offset';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'autocommit';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'automatic_sp_privileges';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'back_log';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'basedir';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'big_tables';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'binlog_cache_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'binlog_checksum';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'binlog_direct_non_transactional_updates';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'binlog_format';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
EnumValues: 'ROW,STATEMENT,MIXED';
|
||
),
|
||
(
|
||
Name: 'binlog_row_image';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
EnumValues: 'FULL,MINIMAL,NOBLOB';
|
||
),
|
||
(
|
||
Name: 'binlog_stmt_cache_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'bulk_insert_buffer_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'character_set_client';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'character_set_connection';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'character_set_database[a]';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'character_set_filesystem';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'character_set_results';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'character_set_server';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'character_set_system';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'character_sets_dir';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'collation_connection';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'collation_database[b]';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'collation_server';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'completion_type';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
EnumValues: 'NO_CHAIN,CHAIN,RELEASE,0,1,2';
|
||
),
|
||
(
|
||
Name: 'concurrent_insert';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
EnumValues: 'NEVER,AUTO,ALWAYS,0,1,2';
|
||
),
|
||
(
|
||
Name: 'connect_timeout';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'datadir';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'date_format';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'datetime_format';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'debug';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'debug_sync';
|
||
IsDynamic: True;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'default_storage_engine';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
EnumValues: 'FEDERATED,MRG_MYISAM,MyISAM,BLACKHOLE,CSV,MEMORY,ARCHIVE,InnoDB';
|
||
),
|
||
(
|
||
Name: 'default_tmp_storage_engine';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
EnumValues: 'FEDERATED,MRG_MYISAM,MyISAM,BLACKHOLE,CSV,MEMORY,ARCHIVE,InnoDB';
|
||
),
|
||
(
|
||
Name: 'default_week_format';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'delay_key_write';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
EnumValues: 'ON,OFF,ALL';
|
||
),
|
||
(
|
||
Name: 'delayed_insert_limit';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'delayed_insert_timeout';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'delayed_queue_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'disable_gtid_unsafe_statements';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'div_precision_increment';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'end_markers_in_json';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'engine_condition_pushdown';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'eq_range_index_dive_limit';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'error_count';
|
||
IsDynamic: False;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'event_scheduler';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
EnumValues: 'ON,OFF,DISABLED';
|
||
),
|
||
(
|
||
Name: 'expire_logs_days';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'external_user';
|
||
IsDynamic: False;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'flush';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'flush_time';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'foreign_key_checks';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'ft_boolean_syntax';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'ft_max_word_len';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'ft_min_word_len';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'ft_query_expansion_limit';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'ft_stopword_file';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'general_log';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'general_log_file';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'group_concat_max_len';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'gtid_done';
|
||
IsDynamic: False;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'gtid_lost';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'gtid_mode';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'gtid_mode';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'gtid_next';
|
||
IsDynamic: True;
|
||
VarScope: vsSession;
|
||
EnumValues: 'AUTOMATIC,ANONYMOUS';
|
||
),
|
||
(
|
||
Name: 'gtid_owned';
|
||
IsDynamic: False;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'have_compress';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_crypt';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_csv';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_dynamic_loading';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_geometry';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_innodb';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_ndbcluster';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_openssl';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_partitioning';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_profiling';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_query_cache';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_rtree_keys';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_ssl';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'have_symlink';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'host_cache_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'hostname';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'identity';
|
||
IsDynamic: True;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'ignore_builtin_innodb';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'init_connect';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'init_file';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'init_slave';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_adaptive_flushing';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_adaptive_hash_index';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_adaptive_max_sleep_delay';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_additional_mem_pool_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_analyze_is_persistent';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_api_enable_binlog';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_api_enable_mdl';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_api_trx_level';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_autoextend_increment';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_autoinc_lock_mode';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_buffer_pool_dump_at_shutdown';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_buffer_pool_dump_now';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_buffer_pool_filename';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_buffer_pool_instances';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_buffer_pool_load_abort';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_buffer_pool_load_at_startup';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_buffer_pool_load_now';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_buffer_pool_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_change_buffer_max_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_change_buffering';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
EnumValues: 'INSERTS,DELETES,PURGES,CHANGES,ALL,NONE';
|
||
),
|
||
(
|
||
Name: 'innodb_checksum_algorithm';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
EnumValues: 'INNODB,CRC32,NONE,STRICT_INNODB,STRICT_CRC32,STRICT_NONE';
|
||
),
|
||
(
|
||
Name: 'innodb_checksums';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_commit_concurrency';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_concurrency_tickets';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_data_file_path';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_data_home_dir';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_doublewrite';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_fast_shutdown';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_file_format';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_file_format_check';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_file_format_max';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_file_per_table';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_flush_log_at_trx_commit';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
EnumValues: '0,1,2';
|
||
),
|
||
(
|
||
Name: 'innodb_flush_method';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_flush_neighbors';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_force_load_corrupted';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_force_recovery';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_ft_aux_table';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_ft_cache_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_ft_enable_stopword';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_ft_max_token_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_ft_min_token_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_ft_num_word_optimize';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_ft_server_stopword_table';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_ft_sort_pll_degree';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_ft_user_stopword_table';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_io_capacity';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_large_prefix';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_lock_wait_timeout';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'innodb_locks_unsafe_for_binlog';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_log_buffer_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_log_file_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_log_files_in_group';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_log_group_home_dir';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_lru_scan_depth';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_max_dirty_pages_pct';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_max_purge_lag';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_mirrored_log_groups';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_monitor_disable';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_monitor_enable';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_monitor_reset';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_monitor_reset_all';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_old_blocks_pct';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_old_blocks_time';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_open_files';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_optimize_fulltext_only';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_page_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_print_all_deadlocks';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_purge_batch_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_purge_threads';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_random_read_ahead';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_read_ahead_threshold';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_read_io_threads';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_replication_delay';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_rollback_on_timeout';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_rollback_segments';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_sort_buffer_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_spin_wait_delay';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_stats_method';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
EnumValues: 'NULLS_EQUAL,NULLS_UNEQUAL,NULLS_IGNORED';
|
||
),
|
||
(
|
||
Name: 'innodb_stats_on_metadata';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_stats_persistent_sample_pages';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_stats_sample_pages';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_stats_transient_sample_pages';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_strict_mode';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'innodb_support_xa';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'innodb_sync_array_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_sync_spin_loops';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_table_locks';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'innodb_thread_concurrency';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_thread_sleep_delay';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_undo_directory';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_undo_logs';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_undo_tablespaces';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_use_native_aio';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_use_sys_malloc';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_version';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'innodb_write_io_threads';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'insert_id';
|
||
IsDynamic: True;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'interactive_timeout';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'join_buffer_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'keep_files_on_create';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'key_buffer_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'key_cache_age_threshold';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'key_cache_block_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'key_cache_division_limit';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'language';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'large_files_support';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'large_page_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'large_pages';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'last_insert_id';
|
||
IsDynamic: True;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'lc_messages';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'lc_messages_dir';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'lc_time_names';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'license';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'local_infile';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'lock_wait_timeout';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'locked_in_memory';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'log';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'log_bin';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'log_bin_basename';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'log_error';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'log_output';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'log_queries_not_using_indexes';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'log_slave_updates';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'log_slow_queries';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'log_throttle_queries_not_using_indexes';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'log_warnings';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'long_query_time';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'low_priority_updates';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'lower_case_file_system';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'lower_case_table_names';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'master_info_repository';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'master_verify_checksum';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'max_allowed_packet';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'max_binlog_cache_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'max_binlog_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'max_binlog_stmt_cache_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'max_connect_errors';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'max_connections';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'max_delayed_threads';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_error_count';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_heap_table_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_insert_delayed_threads';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_join_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_length_for_sort_data';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_prepared_stmt_count';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'max_relay_log_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'max_seeks_for_key';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_sort_length';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_sp_recursion_depth';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_tmp_tables';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_user_connections';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'max_write_lock_count';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'memlock';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'metadata_locks_cache_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'myisam_data_pointer_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'myisam_max_sort_file_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'myisam_mmap_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'myisam_recover_options';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'myisam_repair_threads';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'myisam_sort_buffer_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'myisam_stats_method';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
EnumValues: 'NULLS_EQUAL,NULLS_UNEQUAL,NULLS_IGNORED';
|
||
),
|
||
(
|
||
Name: 'myisam_use_mmap';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'named_pipe';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'net_buffer_length';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'net_read_timeout';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'net_retry_count';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'net_write_timeout';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'new';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'old';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'old_alter_table';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'old_passwords';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'open_files_limit';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'optimizer_join_cache_level';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'optimizer_prune_level';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'optimizer_search_depth';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'optimizer_switch';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'optimizer_trace';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'optimizer_trace_features';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'optimizer_trace_limit';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'optimizer_trace_max_mem_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'optimizer_trace_offset';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'have_partitioning';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_accounts_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_digests_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_events_stages_history_long_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_events_stages_history_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_events_statements_history_long_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_events_statements_history_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_events_waits_history_long_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_events_waits_history_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_hosts_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_cond_classes';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_cond_instances';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_file_classes';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_file_handles';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_file_instances';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_mutex_classes';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_mutex_instances';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_rwlock_classes';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_rwlock_instances';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_socket_classes';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_socket_instances';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_stage_classes';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_statement_classes';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_table_handles';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_table_instances';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_thread_classes';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_max_thread_instances';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_setup_actors_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_setup_objects_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'performance_schema_users_size';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'pid_file';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'plugin_dir';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'port';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'preload_buffer_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'profiling';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'profiling_history_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'protocol_version';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'proxy_user';
|
||
IsDynamic: False;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'pseudo_thread_id';
|
||
IsDynamic: True;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'query_alloc_block_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'query_cache_limit';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'query_cache_min_res_unit';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'query_cache_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'query_cache_type';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
EnumValues: '0,1,2';
|
||
),
|
||
(
|
||
Name: 'query_cache_wlock_invalidate';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'query_prealloc_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'rand_seed1';
|
||
IsDynamic: True;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'rand_seed2';
|
||
IsDynamic: True;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'range_alloc_block_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'read_buffer_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'read_only';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'read_rnd_buffer_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'relay_log_basename';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'relay_log_index';
|
||
IsDynamic: False;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'relay_log_index';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'relay_log_info_file';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'relay_log_info_repository';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'relay_log_purge';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'relay_log_recovery';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'relay_log_space_limit';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'report_host';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'report_password';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'report_port';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'report_user';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'rpl_semi_sync_master_enabled';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'rpl_semi_sync_master_timeout';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'rpl_semi_sync_master_trace_level';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'rpl_semi_sync_master_wait_no_slave';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'rpl_semi_sync_slave_enabled';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'rpl_semi_sync_slave_trace_level';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'secure_auth';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'secure_file_priv';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'server_id';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'server_uuid';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'shared_memory';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'shared_memory_base_name';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'skip_external_locking';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'skip_name_resolve';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'skip_networking';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'skip_show_database';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slave_compressed_protocol';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slave_exec_mode';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
EnumValues: 'IDEMPOTENT,STRICT';
|
||
),
|
||
(
|
||
Name: 'slave_load_tmpdir';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slave_net_timeout';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slave_parallel_workers';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slave_skip_errors';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slave_sql_verify_checksum';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slave_transaction_retries';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slave_type_conversions';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slow_launch_time';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slow_query_log';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'slow_query_log_file';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'socket';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'sort_buffer_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_auto_is_null';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_big_selects';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_big_tables';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_buffer_result';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_log_bin';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_log_off';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_low_priority_updates';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_max_join_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_mode';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_notes';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_quote_show_create';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_safe_updates';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_select_limit';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'sql_slave_skip_counter';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'sql_warnings';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'ssl_ca';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'ssl_capath';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'ssl_cert';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'ssl_cipher';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'ssl_crl';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'ssl_crlpath';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'ssl_key';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'storage_engine';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
EnumValues: 'FEDERATED,MRG_MYISAM,MyISAM,BLACKHOLE,CSV,MEMORY,ARCHIVE,InnoDB';
|
||
),
|
||
(
|
||
Name: 'stored_program_cache';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'sync_binlog';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'sync_frm';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'sync_master_info';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'sync_relay_log';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'sync_relay_log_info';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'system_time_zone';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'table_definition_cache';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'table_open_cache';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'thread_cache_size';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'thread_concurrency';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'thread_handling';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'thread_stack';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'time_format';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'time_zone';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'timed_mutexes';
|
||
IsDynamic: True;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'timestamp';
|
||
IsDynamic: True;
|
||
VarScope: vsSession;
|
||
),
|
||
(
|
||
Name: 'tmp_table_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'tmpdir';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'transaction_alloc_block_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'transaction_prealloc_size';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'tx_isolation';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
EnumValues: 'READ-UNCOMMITTED,READ-COMMITTED,REPEATABLE-READ,SERIALIZABLE';
|
||
),
|
||
(
|
||
Name: 'tx_read_only';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'unique_checks';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'updatable_views_with_limit';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'version';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'version_comment';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'version_compile_machine';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'version_compile_os';
|
||
IsDynamic: False;
|
||
VarScope: vsGlobal;
|
||
),
|
||
(
|
||
Name: 'wait_timeout';
|
||
IsDynamic: True;
|
||
VarScope: vsBoth;
|
||
),
|
||
(
|
||
Name: 'warning_count';
|
||
IsDynamic: False;
|
||
VarScope: vsSession;
|
||
)
|
||
|
||
);
|
||
|
||
|
||
function GetFunctionCategories: TStringList;
|
||
|
||
implementation
|
||
|
||
uses helpers;
|
||
|
||
function GetFunctionCategories: TStringList;
|
||
var
|
||
i: Integer;
|
||
begin
|
||
Result := TStringList.Create;
|
||
for i:=0 to Length(MySqlFunctions)-1 do
|
||
begin
|
||
if Result.IndexOf( MySqlFunctions[i].Category ) = -1 then
|
||
begin
|
||
Result.Add( MySqlFunctions[i].Category );
|
||
end;
|
||
end;
|
||
Result.Sort;
|
||
end;
|
||
|
||
|
||
initialization
|
||
|
||
// Keywords copied from SynHighligherSQL
|
||
MySQLKeywords := TStringList.Create;
|
||
MySQLKeywords.CommaText := 'ACCESSIBLE,ACTION,ADD,AFTER,AGAINST,AGGREGATE,ALGORITHM,ALL,ALTER,ANALYZE,AND,ANY,AS,' +
|
||
'ASC,ASENSITIVE,AT,AUTO_INCREMENT,AVG_ROW_LENGTH,BACKUP,BEFORE,BEGIN,BENCHMARK,BETWEEN,BINLOG,BIT,' +
|
||
'BOOL,BOTH,BY,CACHE,CALL,CASCADE,CASCADED,CASE,CHANGE,CHARACTER,CHARSET,CHECK,' +
|
||
'CHECKSUM,CLIENT,COLLATE,COLLATION,COLUMN,COLUMNS,COMMENT,COMMIT,' +
|
||
'COMMITTED,COMPLETION,CONCURRENT,CONNECTION,CONSISTENT,CONSTRAINT,' +
|
||
'CONVERT,CONTAINS,CONTENTS,CREATE,CROSS,DATA,DATABASE,DATABASES,DAY_HOUR,' +
|
||
'DAY_MICROSECOND,DAY_MINUTE,DAY_SECOND,DEALLOCATE,DEC,DEFAULT,DEFINER,DELAYED,DELAY_KEY_WRITE,DELETE,DESC,' +
|
||
'DETERMINISTIC,DIRECTORY,DISABLE,DISCARD,DESCRIBE,DISTINCT,DISTINCTROW,' +
|
||
'DIV,DROP,DUAL,DUMPFILE,DUPLICATE,EACH,ELSE,ELSEIF,ENABLE,ENCLOSED,END,ENDS,' +
|
||
'ENGINE,ENGINES,ESCAPE,ESCAPED,ERRORS,EVENT,EVENTS,EVERY,EXECUTE,EXISTS,' +
|
||
'EXPANSION,EXPLAIN,FALSE,FIELDS,FILE,FIRST,FLOAT4,FLOAT8,FLUSH,FOR,FORCE,FOREIGN,FROM,' +
|
||
'FULL,FULLTEXT,FUNCTION,FUNCTIONS,GLOBAL,GRANT,GRANTS,GROUP,HAVING,HELP,' +
|
||
'HIGH_PRIORITY,HOSTS,HOUR_MICROSECOND,HOUR_MINUTE,HOUR_SECOND,IDENTIFIED,IGNORE,IGNORE_SERVER_IDS,INDEX,INFILE,INNER,INOUT,INSENSITIVE,INSERT,' +
|
||
'INSERT_METHOD,INSTALL,INT1,INT2,INT3,INT4,INT8,INTEGER,INTO,IO_THREAD,IS,' +
|
||
'ISOLATION,INVOKER,JOIN,KEY,KEYS,KILL,LAST,LEADING,LEAVES,LEVEL,LESS,' +
|
||
'LIKE,LIMIT,LINEAR,LINES,LIST,LOAD,LOCAL,LOCK,LOGS,LONG,LOW_PRIORITY,' +
|
||
'MASTER,MASTER_HOST,MASTER_HEARTBEAT_PERIOD,MASTER_LOG_FILE,MASTER_LOG_POS,MASTER_CONNECT_RETRY,' +
|
||
'MASTER_PASSWORD,MASTER_PORT,MASTER_SSL,MASTER_SSL_CA,MASTER_SSL_CAPATH,' +
|
||
'MASTER_SSL_CERT,MASTER_SSL_CIPHER,MASTER_SSL_KEY,MASTER_SSL_VERIFY_SERVER_CERT,MASTER_USER,MATCH,' +
|
||
'MAX_ROWS,MAXVALUE,MIDDLEINT,MIN_ROWS,MINUTE_MICROSECOND,MINUTE_SECOND,MOD,MODE,MODIFY,MODIFIES,NAMES,' +
|
||
'NATURAL,NEW,NO,NODEGROUP,NOT,NO_WRITE_TO_BINLOG,NULL,NUMERIC,OJ,OFFSET,OLD,ON,OPTIMIZE,OPTION,' +
|
||
'OPTIONALLY,OPEN,OR,ORDER,OUT,OUTER,OUTFILE,PACK_KEYS,PARTIAL,PARTITION,' +
|
||
'PARTITIONS,PERSISTENT,PLUGIN,PLUGINS,PRECISION,PREPARE,PRESERVE,PRIMARY,PRIVILEGES,PROCEDURE,' +
|
||
'PROCESS,PROCESSLIST,PURGE,QUERY,RAID_CHUNKS,RAID_CHUNKSIZE,RAID_TYPE,RANGE,' +
|
||
'READ,READS,READ_WRITE,REAL,REBUILD,REFERENCES,REGEXP,RELAY_LOG_FILE,RELAY_LOG_POS,RELEASE,RELOAD,' +
|
||
'RENAME,REORGANIZE,REPAIR,REPEATABLE,REPLACE,REPLICATION,REQUIRE,RESIGNAL,RESTRICT,RESET,' +
|
||
'RESTORE,RETURN,RETURNS,REVOKE,RLIKE,ROLLBACK,ROLLUP,ROUTINE,ROW,' +
|
||
'ROW_FORMAT,ROWS,SAVEPOINT,SCHEDULE,SCHEMA,SCHEMAS,SECOND_MICROSECOND,SECURITY,SELECT,' +
|
||
'SENSITIVE,SEPARATOR,SERIALIZABLE,SESSION,SET,SHARE,SHOW,SHUTDOWN,SIGNAL,SIMPLE,SLAVE,SNAPSHOT,SOME,' +
|
||
'SONAME,SPECIFIC,SQL,SQLEXCEPTION,SQLSTATE,SQLWARNING,SQL_BIG_RESULT,SQL_BUFFER_RESULT,SQL_CACHE,' +
|
||
'SQL_CALC_FOUND_ROWS,SQL_NO_CACHE,SQL_SMALL_RESULT,SPATIAL,SQL_THREAD,SSL,START,' +
|
||
'STARTING,STARTS,STATUS,STOP,STORAGE,STRAIGHT_JOIN,SUBPARTITION,' +
|
||
'SUBPARTITIONS,SUPER,TABLE,TABLES,TABLESPACE,TEMPORARY,TERMINATED,THAN,' +
|
||
'THEN,TO,TRAILING,TRANSACTION,TRIGGER,TRIGGERS,TRUE,TYPE,UNCOMMITTED,UNDO,' +
|
||
'UNINSTALL,UNIQUE,UNLOCK,UNSIGNED,UPDATE,UPGRADE,UNION,USAGE,USE,USING,VALUES,VARCHARACTER,' +
|
||
'VARIABLES,VARYING,VIEW,VIRTUAL,WARNINGS,WHEN,WHERE,WITH,WORK,WRITE,XOR,YEAR_MONTH,ZEROFILL,'
|
||
// SQL Plus commands:
|
||
+ 'CLOSE,CONDITION,CONTINUE,CURSOR,DECLARE,DO,EXIT,FETCH,FOUND,GOTO,' +
|
||
'HANDLER,ITERATE,LANGUAGE,LEAVE,LOOP,UNTIL,WHILE';
|
||
|
||
// Error codes copied from perror.exe
|
||
MySQLErrorCodes := Explode(',', '0=No error,'+
|
||
'1=Operation not permitted,'+
|
||
'2=No such file or directory,'+
|
||
'3=No such process,'+
|
||
'4=Interrupted function call,'+
|
||
'5=Input/output error,'+
|
||
'6=No such device or address,'+
|
||
'7=Arg list too long,'+
|
||
'8=Exec format error,'+
|
||
'9=Bad file descriptor,'+
|
||
'10=No child processes,'+
|
||
'11=Resource temporarily unavailable,'+
|
||
'12=Not enough space,'+
|
||
'13=Permission denied,'+
|
||
'14=Bad address,'+
|
||
'16=Resource device,'+
|
||
'17=File exists,'+
|
||
'18=Improper link,'+
|
||
'19=No such device,'+
|
||
'20=Not a directory,'+
|
||
'21=Is a directory,'+
|
||
'22=Invalid argument,'+
|
||
'23=Too many open files in system,'+
|
||
'24=Too many open files,'+
|
||
'25=Inappropriate I/O control operation,'+
|
||
'27=File too large,'+
|
||
'28=No space left on device,'+
|
||
'29=Invalid seek,'+
|
||
'30=Read-only file system,'+
|
||
'31=Too many links,'+
|
||
'32=Broken pipe,'+
|
||
'33=Domain error,'+
|
||
'34=Result too large,'+
|
||
'36=Resource deadlock avoided,'+
|
||
'38=Filename too long,'+
|
||
'39=No locks available,'+
|
||
'40=Function not implemented,'+
|
||
'41=Directory not empty,'+
|
||
'42=Illegal byte sequence,'+
|
||
'120=Didn''t find key on read or update,'+
|
||
'121=Duplicate key on write or update,'+
|
||
'123=Someone has changed the row since it was read (while the table was locked to prevent it),'+
|
||
'124=Wrong index given to function,'+
|
||
'126=Index file is crashed,'+
|
||
'127=Record-file is crashed,'+
|
||
'128=Out of memory,'+
|
||
'130=Incorrect file format,'+
|
||
'131=Command not supported by database,'+
|
||
'132=Old database file,'+
|
||
'133=No record read before update,'+
|
||
'134=Record was already deleted (or record file crashed),'+
|
||
'135=No more room in record file,'+
|
||
'136=No more room in index file,'+
|
||
'137=No more records (read after end of file),'+
|
||
'138=Unsupported extension used for table,'+
|
||
'139=Too big row,'+
|
||
'140=Wrong create options,'+
|
||
'141=Duplicate unique key or constraint on write or update,'+
|
||
'142=Unknown character set used,'+
|
||
'143=Conflicting table definitions in sub-tables of MERGE table,'+
|
||
'144=Table is crashed and last repair failed,'+
|
||
'145=Table was marked as crashed and should be repaired,'+
|
||
'146=Lock timed out; Retry transaction,'+
|
||
'147=Lock table is full; Restart program with a larger locktable,'+
|
||
'148=Updates are not allowed under a read only transactions,'+
|
||
'149=Lock deadlock; Retry transaction,'+
|
||
'150=Foreign key constraint is incorrectly formed,'+
|
||
'151=Cannot add a child row,'+
|
||
'152=Cannot delete a parent row');
|
||
|
||
|
||
end.
|