Re: pgsql and php with windows.

Started by babuover 20 years ago6 messagesgeneral
Jump to latest
#1babu
garavindbabu@yahoo.co.uk

Thanks for the reply.

I am trying to use ssl mode when connecting to pgsql via php.
i have used the method pg_conncet with sslmode and require option.
But it gets an error "Unable to connect to PostgreSQL server: sslmode
value "require" invalid when SSL support is not compiled in ".

You have to recompile PostgreSQL with SSL support (or get packages with
SSL support compiled in.)

is it possible to add ssl support for the existing postgresql db.bcos i have imporatant info in it.
what are the options for the recompilation.
thanks
babu

---------------------------------
Yahoo! Messenger NEW - crystal clear PC to PC calling worldwide with voicemail

#2Hugo
htakada@gmail.com
In reply to: babu (#1)
question : postgres + Powerbuilder

Hi everybody, is there anybody developing apps with powerbuilder and
postgres as the db server ? my problem is that I have a function in postgres
to import data from a csv file that resides in the server, in pb a declare
that function as a store procedure and then I call it with the PowerBuilder
execute command, but nothing happens ( no data is imported), if I check for
an error after the execution of the statement in PB there is no error from
the server,so I dont know what could be wrong, but if I call de function
from de interactive sql in pagadmin3 the function does what it is intended
to do, i call the function this way in pgadmin interactive sql : select
my_echema.fn_function_import_dataxx()

any help is welcome

thanks in advance

Hugo

#3Hugo
htakada@gmail.com
In reply to: Hugo (#2)
Re: question : postgres + Powerbuilder

sorry, forgot to mention that the server is 8.0.3 and is running on a fedora
core 3 server

Show quoted text

On 10/08/05, Hugo <htakada@gmail.com> wrote:

Hi everybody, is there anybody developing apps with powerbuilder and
postgres as the db server ? my problem is that I have a function in postgres
to import data from a csv file that resides in the server, in pb a declare
that function as a store procedure and then I call it with the PowerBuilder
execute command, but nothing happens ( no data is imported), if I check for
an error after the execution of the statement in PB there is no error from
the server,so I dont know what could be wrong, but if I call de function
from de interactive sql in pagadmin3 the function does what it is intended
to do, i call the function this way in pgadmin interactive sql : select
my_echema.fn_function_import_dataxx()

any help is welcome

thanks in advance

Hugo

#4Matt Miller
mattm@epx.com
In reply to: Hugo (#2)
Re: question : postgres + Powerbuilder

On Wed, 2005-08-10 at 11:36 -0400, Hugo wrote:

anybody developing apps with powerbuilder and postgres

Take a look at http://pbpgsql.spiderbark.com/index.php

#5Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: babu (#1)

On Wed, Aug 10, 2005 at 04:03:02PM +0100, babu wrote:

Thanks for the reply.

I am trying to use ssl mode when connecting to pgsql via php.
i have used the method pg_conncet with sslmode and require option.
But it gets an error "Unable to connect to PostgreSQL server: sslmode
value "require" invalid when SSL support is not compiled in ".

You have to recompile PostgreSQL with SSL support (or get packages with
SSL support compiled in.)

is it possible to add ssl support for the existing postgresql db.bcos
i have imporatant info in it.

Hmm, since you are using the Windows version, I'm not really sure. If
you have the right compiler and environment, it'd be just a matter of
getting the source for the same version you have installed, and then
"configure --with-openssl".

It'd surprise me however to learn that the Windows package doesn't have
SSL support ... may I ask where did you get the server package?

--
Alvaro Herrera (<alvherre[a]alvh.no-ip.org>)
"[PostgreSQL] is a great group; in my opinion it is THE best open source
development communities in existence anywhere." (Lamar Owen)

#6Magnus Hagander
magnus@hagander.net
In reply to: Alvaro Herrera (#5)

Hmm, since you are using the Windows version, I'm not really
sure. If you have the right compiler and environment, it'd
be just a matter of getting the source for the same version
you have installed, and then "configure --with-openssl".

It'd surprise me however to learn that the Windows package
doesn't have SSL support ... may I ask where did you get the
server package?

The MSI package from postgresql.org contains SSL support. Perhaps PHP is
shipping their own precompiled DLLs that has it turned off?

//Magnus