Re: Concurrent testing PostgreSQL Vs MySQL

From: Alvaro Herrera <alvherre(at)dcc(dot)uchile(dot)cl>
To: Durai <visolve_postgres(at)lycos(dot)co(dot)uk>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Concurrent testing PostgreSQL Vs MySQL
Date: 2003-11-21 12:40:31
Message-ID: 20031121124031.GB26392@dcc.uchile.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Fri, Nov 21, 2003 at 03:39:42PM +0530, Durai wrote:

> The script content is:
>
> # cat testpgsql.php
>
> <?php
> $dbconn = pg_connect("host=172.16.1.158 port=5432 dbname=test user=postgres");
> $result = pg_exec ($dbconn, "update table2 set C2=C2+1;");
> $result = pg_exec ($dbconn, "update table2 set C2=C2-1;");
> pg_close($dbconn);
> ?>

Is this the exact equivalent test of the MySQL "concurrent" test?
(Ignoring the transaction handling difference)

--
Alvaro Herrera (<alvherre[(at)]dcc(dot)uchile(dot)cl>)
"La tristeza es un muro entre dos jardines" (Khalil Gibran)

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Alex Page 2003-11-21 13:07:38 Re: linking postgre to AD
Previous Message Shridhar Daithankar 2003-11-21 12:39:31 Re: Modelling Oracle Sequences