Hi!
I wrote:
> What I disliked (like the PEAR people) is the missing of a
> row counter when fetching rows from Postgres result tables.
>
> The mysql/ODBC/Adabas/some-other - way is:
>
> $dbr = xxx_exec ($connection, $query);
> while (list ($a, $b, $c) = xxx_fetch_row ($dbr)) {
>... // Grea
On Tue, Jun 19, 2001 at 04:28:42PM +0200, Georg von Zezschwitz wrote:
> Now, the patch for PHP 4.0.5 is attached, together with
> a description.
>
> Could anybody with CVS access test it / apply it?
I committed it earlier this afternoon.
> I think who writes the code should also do some docum
This has bugged me as well in the past. Once the cvs server comes back
alive, we'll get you set up with a cvs account and you can apply these
patches. Stay tuned for a message from Sascha saying it is back.
-Rasmus
On Tue, 19 Jun 2001, Georg von Zezschwitz wrote:
> Hi,
>
> As I wanted to migr
On Tue, Jun 19, 2001 at 02:04:59AM +0200, Georg von Zezschwitz wrote:
> I found it as easy as expected to write a patch that
> makes Postgres driver behave like the other drivers, of
> cause with full backward compatibility by making the
> row number parameter optional.
Neat. =)
> Now, is ther
Hi,
As I wanted to migrate a project from ODBC to Postgres, I found
it easier to modify the postgres driver of PHP 4.0.x than to
change my source.
What I disliked (like the PEAR people) is the missing of a
row counter when fetching rows from Postgres result tables.
The mysql/ODBC/Adabas/some-ot