Skip to content

Commit 31a768f

Browse files
committed
Update readme to point at new ddox style links.
1 parent 797f27c commit 31a768f

File tree

2 files changed

+12
-18
lines changed

2 files changed

+12
-18
lines changed

.github/workflows/docs.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ jobs:
2525

2626
- name: Build documentation
2727
run: |
28-
# wget https://github.com/adamdruppe/adrdox/archive/master.zip
29-
# unzip master.zip
30-
# pushd adrdox-master && make && popd
31-
# export PATH=$PATH:$PWD/adrdox-master
32-
# doc2 --genSearchIndex --genSource -o generated-docs source
33-
3428
# no way to get dub to include a custom macro file, but we can
3529
# run ddox directly instead with the same command line, including
3630
# our custom macro file

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@ API
4242
[API Reference](https://mysql-d.github.io/mysql-native/)
4343

4444
The primary interfaces:
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)
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.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.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.html): Execute an SQL statement and get the first row.
50+
- [queryValue()](https://mysql-d.github.io/mysql-native/mysql/commands/queryValue.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)
5757

5858
Basic example
5959
-------------

0 commit comments

Comments
 (0)