Re: Transactions in Postgres

Поиск
Список
Период
Сортировка
От Ivan Horvath
Тема Re: Transactions in Postgres
Дата
Msg-id 20020403142007.28671.qmail@web14703.mail.yahoo.com
обсуждение исходный текст
Ответ на Transactions in Postgres  (root <trevor@hailix.com>)
Список pgsql-novice
hi

you do exactly twice the execution of the sql command
(pg_exec)


--- 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


=====
Best Regards,

Ivan Horvath

Anyone who has never made a mistake has never tried anything new.

/Albert Einstein/

__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/

В списке pgsql-novice по дате отправления:

Предыдущее
От: Jason Friedman
Дата:
Сообщение: Re: Date
Следующее
От: "Travis Hoyt"
Дата:
Сообщение: now() and interval