Re: connection to PostgreSQL DataBase with Apache::DBI

2005-11-21 Thread Plymouth Rock
script or handler that connects to your database and does some simple operation. Does that work? Yes, it does. Yesterday I've described it in details in another message with the Subject: Re: Connection to PostgreSQL DataBase with Apache::DBI that addressed To: Frank Wiles [EMAIL PROTECTED] and Copy

Re: Connection to PostgreSQL DataBase with Apache::DBI

2005-11-20 Thread Tom Schindl
KartheeK wrote: Hi, Meanwhile, I tried the same thing on a Mandrake-10.1, And Guess What!!! No Errors in my httpd logs. Now, the question is How Can I *prove my Boss* and to myself that I have established mysql connection during httpd process start up is there any way?? 1. I

Re: connection to PostgreSQL DataBase with Apache::DBI

2005-11-20 Thread Plymouth Rock
I tried to set PerlSetEnv/PerlPassEnv variables as described in the guide. It was difficult for me to do it properly as I did it for the first time. I even could set them incorrectly. Besides that, my mod_perl2 was installed and set up properly (it works excellently); but saying about Apache::DBI

Re: Connection to PostgreSQL DataBase with Apache::DBI

2005-11-20 Thread Plymouth Rock
Anybody who uses current major versions of pre-built binaries of the: Apache2 + mod_perl2 + Apache::DBI + PostgreSQL8 When asking for help, please be specific about what you're using. There's a description of what to send here:

Re: connection to PostgreSQL DataBase with Apache::DBI

2005-11-20 Thread Randy Kobes
On Mon, 21 Nov 2005, Plymouth Rock wrote: I tried to set PerlSetEnv/PerlPassEnv variables as described in the guide. It was difficult for me to do it properly as I did it for the first time. I even could set them incorrectly. Besides that, my mod_perl2 was installed and set up properly (it

Re: Connection to PostgreSQL DataBase with Apache::DBI

2005-11-20 Thread Plymouth Rock
1. You're right, there's no any error if the string is removed. If it's present in startup.pl, then there is no matter if it has any incorrect record or not - Apache won't start up or restart anyway. I can write any blah like:

Re: Connection to PostgreSQL DataBase with Apache::DBI

2005-11-18 Thread Frank Wiles
On Fri, 18 Nov 2005 05:13:59 +0300 Plymouth Rock [EMAIL PROTECTED] wrote: I'm tired to experiment with the man's guides and I'm still getting the error in my error.log: [Thu Nov 17 23:35:39 2005] [error] Can't load Perl file: C:/Program Files/Apache Group/Apache2/conf/startup.pl for server

Re: Connection to PostgreSQL DataBase with Apache::DBI

2005-11-18 Thread Perrin Harkins
On Fri, 2005-11-18 at 05:13 +0300, Plymouth Rock wrote: Anybody who uses current major versions of pre-built binaries of the: Apache2 + mod_perl2 + Apache::DBI + PostgreSQL8 When asking for help, please be specific about what you're using. There's a description of what to send here:

Re: connection to PostgreSQL DataBase with Apache::DBI

2005-11-14 Thread Randy Kobes
On Sat, 12 Nov 2005, Plymouth Rock wrote: Before Apache::DBI installation I'd using just DBI PgPP for connecting with my PostgreSQL DataBase: [ ... ] After server's restart it couldn't to start up actually. The error.log said the following: [ ... ] [Fri Nov 11 21:35:12 2005] [error] Can't

connection to PostgreSQL DataBase with Apache::DBI

2005-11-11 Thread Plymouth Rock
Hello. Before Apache::DBI installation I'd using just DBI PgPP for connecting with my PostgreSQL DataBase: $user = owner; $password = pwd; $data_source = dbi:PgPP:mypgdb;localhost;5432; $dbh = DBI-connect($data_source, $user, $password); $sth = $dbh-prepare( q{ SELECT ... FROM ... }); $rc =