Skip to content

Commit 83009f8

Browse files
committed
Fix outdated URLs
1 parent d6a77cc commit 83009f8

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

source/mysql/metadata.d

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,24 @@ struct ColumnInfo
2424
size_t index;
2525
/++
2626
Is the COLUMN_DEFAULT column (in the information schema's COLUMNS table) NULL?
27-
27+
2828
What this means:
29-
29+
3030
On MariaDB 10.2.7 and up:
3131
- Does the column have a default value?
32-
32+
3333
On MySQL and MariaDB 10.2.6 and below:
3434
- This can be true if the column doesn't have a default value OR
3535
if NULL is the column's default value.
36-
36+
3737
See_also:
3838
See COLUMN_DEFAULT description at
39-
$(LINK https://mariadb.com/kb/en/library/information-schema-columns-table/)
39+
$(LINK https://mariadb.com/kb/en/information-schema-columns-table/)
4040
+/
4141
bool defaultNull;
4242
/++
4343
The default value as a string if not NULL.
44-
44+
4545
Depending on the database (see comments for `defaultNull` and the
4646
related "see also" link there), this may be either `null` or `"NULL"`
4747
if the column's default value is NULL.
@@ -100,7 +100,7 @@ information that is available to the connected user. This may well be quite limi
100100
struct MetaData
101101
{
102102
import mysql.connection;
103-
103+
104104
private:
105105
Connection _con;
106106

@@ -174,10 +174,10 @@ public:
174174

175175
/++
176176
List the available databases
177-
177+
178178
Note that if you have connected using the credentials of a user with
179179
limited permissions you may not get many results.
180-
180+
181181
Returns:
182182
An array of strings
183183
+/
@@ -193,7 +193,7 @@ public:
193193

194194
/++
195195
List the tables in the current database
196-
196+
197197
Returns:
198198
An array of strings
199199
+/
@@ -209,7 +209,7 @@ public:
209209

210210
/++
211211
Get column metadata for a table in the current database
212-
212+
213213
Params:
214214
table = The table name
215215
Returns:

source/mysql/protocol/constants.d

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Server capability flags.
77
During the connection handshake process, the server sends a uint of flags
88
describing its capabilities.
99
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)
1111
+/
1212
enum SvrCapFlags: uint
1313
{
@@ -34,7 +34,7 @@ enum SvrCapFlags: uint
3434
/++
3535
Column type codes
3636
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)
3838
+/
3939
enum SQLType : short
4040
{
@@ -85,7 +85,7 @@ enum RefreshFlags : ubyte
8585

8686
/++
8787
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)
8989
+/
9090
enum CommandType : ubyte
9191
{
@@ -125,26 +125,26 @@ enum ResultPacketMarker : ubyte
125125
{
126126
/++
127127
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)
129129
+/
130130
error = 0xff,
131131

132132
/++
133133
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)
135135
+/
136136
ok = 0x00,
137137

138138
/++
139139
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)
141141
+/
142142
eof = 0xfe,
143143
}
144144

145145
/++
146146
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/internals/en/com-query-response.html#column-definition)
148148
+/
149149
enum FieldFlags : ushort
150150
{

0 commit comments

Comments
 (0)