From ee1ef83a89d423b36383b18bd3228785f9b7fd5e Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 25 Sep 2014 13:48:33 +0200 Subject: [PATCH] fix links --- pq.md | 3 +++ pq/Connection/: Executing Queries.md | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pq.md b/pq.md index 7abc9b1..eb590cd 100644 --- 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. diff --git a/pq/Connection/: Executing Queries.md b/pq/Connection/: Executing Queries.md index d603214..f1983a9 100644 --- a/pq/Connection/: Executing Queries.md +++ b/pq/Connection/: Executing Queries.md @@ -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 -- 2.30.2