Skip to content

Commit 8d7683e

Browse files
committed
Update all doc links to point to github pages. Update note to reflect
new doc generation.
1 parent eb08a4f commit 8d7683e

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

README.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ MySQL native
55
[![GitHub - Builds](https://github.com/mysql-d/mysql-native/actions/workflows/dub.yml/badge.svg)](https://github.com/mysql-d/mysql-native/actions/workflows/dub.yml)
66
[![GitHub - Integration Tests](https://github.com/mysql-d/mysql-native/actions/workflows/integration-testing.yml/badge.svg)](https://github.com/mysql-d/mysql-native/actions/workflows/integration-testing.yml)
77

8-
*NOTE: we are in the process of migrating to github actions. Documentation will
9-
eventually be generated using github actions, and stored on github. This README
8+
*NOTE: we are in the process of migrating to github actions. Documentation is now
9+
being generated using github actions, and stored on github. This README
1010
is in flux at the moment, and may contain outdated information*
1111

1212
A [Boost-licensed](http://www.boost.org/LICENSE_1_0.txt) native [D](http://dlang.org)
@@ -34,27 +34,26 @@ In this document:
3434
* [Developers - How to run the test suite](#developers---how-to-run-the-test-suite)
3535

3636
See also:
37-
* [API Reference](http://semitwist.com/mysql-native)
38-
* [Migrating to v2.0.0](https://github.com/mysql-d/mysql-native/blob/master/MIGRATING_TO_V2.md)
37+
* [API Reference](https://mysql-d.github.io/mysql-native/)
3938

4039
API
4140
---
4241

43-
[API Reference](http://semitwist.com/mysql-native)
42+
[API Reference](https://mysql-d.github.io/mysql-native/)
4443

4544
The primary interfaces:
46-
- [Connection](http://semitwist.com/mysql-native/mysql/connection/Connection.html): Connection to the server, and querying and setting of server parameters.
47-
- [MySQLPool](http://semitwist.com/mysql-native/mysql/pool.html): Connection pool, for Vibe.d users.
48-
- [exec()](http://semitwist.com/mysql-native/mysql/commands/exec.html): Plain old SQL statement that does NOT return rows (like INSERT/UPDATE/CREATE/etc), returns number of rows affected
49-
- [query()](http://semitwist.com/mysql-native/mysql/commands/query.html): Execute an SQL statement that DOES return rows (ie, SELECT) and handle the rows one at a time, as an input range.
50-
- [queryRow()](http://semitwist.com/mysql-native/mysql/commands/queryRow.html): Execute an SQL statement and get the first row.
51-
- [queryValue()](http://semitwist.com/mysql-native/mysql/commands/queryValue.html): Execute an SQL statement and get the first value in the first row.
52-
- [prepare()](http://semitwist.com/mysql-native/mysql/prepared/prepare.html): Create a prepared statement
53-
- [Prepared](http://semitwist.com/mysql-native/mysql/prepared/PreparedImpl.html): A prepared statement, optionally pass it to the exec/query function in place of an SQL string.
54-
- [Row](http://semitwist.com/mysql-native/mysql/result/Row.html): One "row" of results, used much like an array of Variant.
55-
- [ResultRange](http://semitwist.com/mysql-native/mysql/result/ResultRange.html): An input range of rows. Convert to random access with [std.array.array()](https://dlang.org/phobos/std_array.html#.array).
56-
57-
Also note the [MySQL <-> D type mappings tables](https://semitwist.com/mysql-native/mysql.html)
45+
- [Connection](https://mysql-d.github.io/mysql-native/mysql.connection.Connection.html): Connection to the server, and querying and setting of server parameters.
46+
- [MySQLPool](https://mysql-d.github.io/mysql-native/mysql.pool.MySQLPool.html): Connection pool, for Vibe.d users.
47+
- [exec()](https://mysql-d.github.io/mysql-native/mysql.commands.exec.1.html): Plain old SQL statement that does NOT return rows (like INSERT/UPDATE/CREATE/etc), returns number of rows affected
48+
- [query()](https://mysql-d.github.io/mysql-native/mysql.commands.query.1.html): Execute an SQL statement that DOES return rows (ie, SELECT) and handle the rows one at a time, as an input range.
49+
- [queryRow()](https://mysql-d.github.io/mysql-native/mysql.commands.queryRow.1.html): Execute an SQL statement and get the first row.
50+
- [queryValue()](https://mysql-d.github.io/mysql-native/mysql.commands.queryValue.1.html): Execute an SQL statement and get the first value in the first row.
51+
- [prepare()](https://mysql-d.github.io/mysql-native/mysql.connection.prepare.html): Create a prepared statement
52+
- [Prepared](https://mysql-d.github.io/mysql-native/mysql.prepared.Prepared.html): A prepared statement, optionally pass it to the exec/query function in place of an SQL string.
53+
- [Row](https://mysql-d.github.io/mysql-native/mysql.result.Row.html): One "row" of results, used much like an array of Variant.
54+
- [ResultRange](https://mysql-d.github.io/mysql-native/mysql.result.ResultRange.html): An input range of rows. Convert to random access with [std.array.array()](https://dlang.org/phobos/std_array.html#.array).
55+
56+
Also note the [MySQL <-> D type mappings tables](https://mysql-d.github.io/mysql-native/mysql.html#details)
5857

5958
Basic example
6059
-------------

0 commit comments

Comments
 (0)