Re: Transactions in Postgres - Mailing list pgsql-novice

From Ugly Hippo
Subject Re: Transactions in Postgres
Date
Msg-id 20020404221545.34573.qmail@web21210.mail.yahoo.com
Whole thread Raw
In response to Transactions in Postgres  (root <trevor@hailix.com>)
List pgsql-novice
You are running pg_exec twice, so you should get two
inserts.

Try:

$result = pg_exec(....
if($result)...

HTH,
Troy

--- root <trevor@hailix.com> wrote:
> HI,
>
> I am running Postgresql-7.2 with PHP 4.1.1 and I am
> beginning to use
> transactions inside of a php script:
>
> $Link = pg_connect("host=$Host dbname=$DBName
> user=$User") or die
> ("Couldn't connect to the database $DBName");
>
>  $Query = "BEGIN WORK; INSERT into $TableName
> (firstname,lastname,emailaddress,comments,created)
> values('$Array[FirstName]',
>
'$Array[LastName]','$Array[email]','$Array[Comments]',
> 'now()');
> COMMIT;";
>
>  // Test to see if the query was succeful or not
>
>  pg_exec($Link, $Query) or die ("Couldn't insert
> name $firstname");
>
>  if (pg_exec($Link,$Query)) {
>  echo "<h1>Insert was successful</h1>";
>  } else {
>  echo "<H1>Insert was not successful</H1>";
>
> What I am finding is that this query will insert a
> new name twice in the
> database within milliseconds of each other.  What am
> I missing in doing
> this?  Any help is appreciated.
>
> Trevor
>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please
> send an appropriate
> subscribe-nomail command to majordomo@postgresql.org
> so that your
> message can get through to the mailing list cleanly


______________________________________________________________________
Music, Movies, Sports, Games! http://entertainment.yahoo.ca

pgsql-novice by date:

Previous
From: Harald Lux
Date:
Subject: Re: identity columns ?
Next
From: Oliver Elphick
Date:
Subject: Re: identity columns ?