my($dbh) = DBI->connect('dbi:Pg:dbname=dbhere', 'userhere', 'passhere', { AutoCommit => 1, RaiseError => 1, }) || die("DBI->connect() failed: $DBI::errstr"); tie(%session, 'Apache::Session::Postgres', undef(), { Handle => $dbh, Commit => 1, }); #### my($dbh) = DBI->connect('dbi:Pg:dbname=dbhere', 'userhere', 'passhere', { AutoCommit => 1, RaiseError => 1, }) || die("DBI->connect() failed: $DBI::errstr"); tie(%session, 'Apache::Session::Postgres', undef(), { DataSource => 'dbi:Pg:dbname=dbhere', UserName => 'userhere', Password => 'passhere', Commit => 1, }); #### DBD::Pg::st execute failed: pqReadData() -- read() failed: errno=88 at /usr/lib/perl5/site_perl/Apache/Session/Store/DBI.pm line 65. (in cleanup) DBD::Pg::st execute failed: pqReadData() -- read() failed: errno=88 at /usr/lib/perl5/site_perl/Apache/Session/Store/DBI.pm line 65.