Re: Apache::Session in PostgreSQL

Поиск
Список
Период
Сортировка
От Victor Manuel Jaquez Leal
Тема Re: Apache::Session in PostgreSQL
Дата
Msg-id Pine.LNX.3.96.1000402124012.4084C-100000@linux1.coral.com.mx
обсуждение исходный текст
Ответ на Apache::Session in PostgreSQL  (Victor Manuel Jaquez Leal <ceyusa@linux1.coral.com.mx>)
Список pgsql-general
Hi Again!

Thanks for all the people that helped me, I really appreciate it.

Finnally I spent my last saturday night trying to patch the DBIStore perl
module and I got this:

(I don't have probe it with non-scalar variables, so isn't a bullet-proof
patch yet... 8-)...

*** DBIStore.pm.old    Sat Apr  1 20:03:48 2000
--- DBIStore.pm    Sat Apr  1 20:03:12 2000
***************
*** 135,139 ****
      }

!     my $serialized = nfreeze $session->{data};

      $self->{insert_sth}->bind_param(1, $session->{data}->{_session_id});
--- 135,139 ----
      }

!     my $serialized = pack "u", nfreeze $session->{data};

      $self->{insert_sth}->bind_param(1, $session->{data}->{_session_id});
***************
*** 160,164 ****


!     my $serialized = nfreeze $session->{data};

      $self->{update_sth}->bind_param(1, length $serialized);
--- 160,164 ----


!     my $serialized = pack "u", nfreeze $session->{data};

      $self->{update_sth}->bind_param(1, length $serialized);
***************
*** 195,199 ****
      $self->{materialize_sth}->finish;

!     $session->{data} = thaw $results->[0];
  }

--- 195,199 ----
      $self->{materialize_sth}->finish;

!     $session->{data} = thaw unpack "u", $results->[0];
  }




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

Предыдущее
От: "Michael Black"
Дата:
Сообщение: Before and After Triggers?
Следующее
От: "Michael Black"
Дата:
Сообщение: Re: ODBC Interface questions