You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[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)
0 commit comments