fix links
authorMichael Wallner <mike@php.net>
Thu, 25 Sep 2014 11:48:33 +0000 (13:48 +0200)
committerMichael Wallner <mike@php.net>
Thu, 25 Sep 2014 11:48:33 +0000 (13:48 +0200)
pq.md
pq/Connection/: Executing Queries.md

diff --git a/pq.md b/pq.md
index 7abc9b181c6929f9381c617f9da6e846e40b63f2..eb590cd37e2c9aa31d2f4e7bf1f99b4d8e65e090 100644 (file)
--- a/pq.md
+++ b/pq.md
@@ -10,3 +10,6 @@ This is a modern binding to the mature [libpq](http://www.postgresql.org/docs/cu
 * Extended type [support by pg_type](pq/UsingTypes).
 * Fetching simple [multi-dimensional array maps](pq/FetchingResults#markdown-header-fetching-simple-maps).
 * Working [Gateway implementation](https://bitbucket.org/m6w6/pq-gateway).
+
+> ***NOTE:***  
+  This documentation is work in progress.
index d603214ee16bf82575faa06318e32ee5e9fa4ec4..f1983a9a3683a01c1f5d1f3b9d32ae2173da0c06 100644 (file)
@@ -18,7 +18,7 @@ pq\Connection::exec() accepts a single argument, a ***query string***, containin
        $result = $c->exec("SELECT 1*s,2*s,3*s FROM generate_series(1,3) s");
        ?>
 
-An object of class pq\Result is returned on success. See [Fetching results](pq/: Fetching Results) for details.
+An object of class pq\Result is returned on success. See [Fetching results](pq/Result/: Fetching Results) for details.
 
 > ***NOTE:***  
 > Only the last result will be returned, if the query string contains more than one SQL query.
@@ -36,7 +36,7 @@ If the third argument is present, an ***array with pg_type OIDs***, those types
        $result = $c->execParams("SELECT int($1) * s, int($2) * s, int($3) * s FROM generate_series(1,3) s", array(1,2,3));
        ?>
 
-An object of class pq\Result is returned on success. See [Fetching results](pq/: Fetching Results) for details.
+An object of class pq\Result is returned on success. See [Fetching results](pq/Result/: Fetching Results) for details.
 
 
 ## Explicit prepare & execute of a named statement