PEAR and PG

From: Roberto Mello <rmello(at)cc(dot)usu(dot)edu>
To: pgsql-php(at)postgresql(dot)org
Subject: PEAR and PG
Date: 2001-04-20 16:48:53
Message-ID: 20010420104853.A20297@cc.usu.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Hi there,

Is anyone here using PEAR with PG? I am having trouble finding decent
documentation about it.
I have phpdoc.de/pear but the docs there are sketchy at best.

For example:

private object a &query( $query )

Send a query to PostgreSQL and return the results as a DB_result
object.

private int numRows( $result )

Get the number of rows in a result set

But if I do (I am a PHP newbie, so bear with me please, and this is
just testing code):

$sth = $dbh->query("select user_id from users where email='xxxxxx'");

if($dbh->numrows($sth) > 0) {
$row = $sth->fetchrow(DB_FETCHMODE_ASSOC);
print "more than 0 rows. Row is ". $row[0];
} else {
print "no rows for you";
}

Then it tells me $sth is not a PostgreSQL result set. If it isn't, how
do I get it?

Thanks,

-Roberto
--
+----| http://fslc.usu.edu USU Free Software & GNU/Linux Club |------+
Roberto Mello - Computer Science, USU - http://www.brasileiro.net
http://www.sdl.usu.edu - Space Dynamics Lab, Developer
(D)inner not ready: (A)bort (R)etry (P)izza

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Brent R. Matzelle 2001-04-20 20:22:18 Re: PEAR and PG
Previous Message Roberto Mello 2001-04-20 16:36:45 Re: persistent connections, AOLserver (Was: [SQL] maybe Offtopic : PostgreSQL & PHP ?)