@@ -7,7 +7,7 @@ Server capability flags.
7
7
During the connection handshake process, the server sends a uint of flags
8
8
describing its capabilities.
9
9
10
- See_Also: $(LINK http ://dev.mysql.com/doc/internals/en/connection-phase.html# capability-flags)
10
+ See_Also: $(LINK https ://dev.mysql.com/doc/internals/en/capability-flags.html )
11
11
+/
12
12
enum SvrCapFlags: uint
13
13
{
@@ -34,7 +34,7 @@ enum SvrCapFlags: uint
34
34
/+ +
35
35
Column type codes
36
36
37
- $(LINK2 https://dev.mysql.com/doc/dev/connector-net/6.10/ html/T_MySql_Data_MySqlClient_MySqlDbType.htm , Reference)
37
+ $(LINK2 https://dev.mysql.com/doc/internals/en/com-query-response. html#column-type , Reference)
38
38
+/
39
39
enum SQLType : short
40
40
{
@@ -85,7 +85,7 @@ enum RefreshFlags : ubyte
85
85
86
86
/+ +
87
87
Type of Command Packet (COM_XXX)
88
- See_Also: $(LINK http ://forge .mysql.com/wiki/MySQL_Internals_ClientServer_Protocol#Command_Packet_.28Overview.29 )
88
+ See_Also: $(LINK https ://dev .mysql.com/doc/internals/en/command-phase.html )
89
89
+/
90
90
enum CommandType : ubyte
91
91
{
@@ -125,26 +125,26 @@ enum ResultPacketMarker : ubyte
125
125
{
126
126
/+ +
127
127
Server reports an error
128
- See_Also: $(LINK http ://forge .mysql.com/wiki/MySQL_Internals_ClientServer_Protocol#Error_Packet )
128
+ See_Also: $(LINK https ://dev .mysql.com/doc/internals/en/packet-ERR_Packet.html )
129
129
+/
130
130
error = 0xff ,
131
131
132
132
/+ +
133
133
No error, no result set.
134
- See_Also: $(LINK http ://forge .mysql.com/wiki/MySQL_Internals_ClientServer_Protocol# OK_Packet)
134
+ See_Also: $(LINK https ://dev .mysql.com/doc/internals/en/packet- OK_Packet.html )
135
135
+/
136
136
ok = 0x00 ,
137
137
138
138
/+ +
139
139
Server reports end of data
140
- See_Also: $(LINK http ://forge .mysql.com/wiki/MySQL_Internals_ClientServer_Protocol# EOF_Packet)
140
+ See_Also: $(LINK https ://dev .mysql.com/doc/internals/en/packet- EOF_Packet.html )
141
141
+/
142
142
eof = 0xfe ,
143
143
}
144
144
145
145
/+ +
146
146
Field Flags
147
- See_Also: $(LINK http ://forge .mysql.com/wiki/MySQL_Internals_ClientServer_Protocol#Field_Packet )
147
+ See_Also: $(LINK https ://dev .mysql.com/doc/dev/mysql-server/8.0.26/group__group__cs__column__definition__flags.html )
148
148
+/
149
149
enum FieldFlags : ushort
150
150
{
0 commit comments