Re: Can't seem to get Psql and Exec to work together

From: Andrew McMillan <andrew(at)catalyst(dot)net(dot)nz>
To: YC Nyon <ycnyon(at)pd(dot)jaring(dot)my>
Cc: pgsql-php(at)postgresql(dot)org
Subject: Re: Can't seem to get Psql and Exec to work together
Date: 2002-11-07 08:27:14
Message-ID: 1036657633.20144.754.camel@kant.mcmillan.net.nz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

On Thu, 2002-11-07 at 05:30, YC Nyon wrote:
> I am trying to run Postgresql's psql using Exec() command.
> The code is below
>
> <?
> $convert_sql_2 = "\"C:\postgresql\bin\psql.exe -d Geoprocessing -f
> C:\\postgresql\\bin\\g126.sql";
> exec($convert_sql_2,$ds);
> ?>
>
> It didn't insert the data I hope it would. I tested it from the dos command
> line and it works fine.
> also i used
> $convert_sql_2 = "\"C:\postgresql\bin\psql.exe --help";
> passthru($convert_sql_2,$ds);
> It works, giving me the help options.

I know that if I tried such foolery on Linux it would not let me because
it would be a different user running the psql - one which was not
allowed to access the database.

Presumably on "DOS" the same sort of thing is happening.

Why not use the pgsql module in PHP and run your commands into
PostgreSQL directly anyway? Doing it the way you suggest here just
seems a recipe for a disaster!

Regards,
Andrew.
--
---------------------------------------------------------------------
Andrew @ Catalyst .Net.NZ Ltd, PO Box 11-053, Manners St, Wellington
WEB: http://catalyst.net.nz/ PHYS: Level 2, 150-154 Willis St
DDI: +64(4)916-7201 MOB: +64(21)635-694 OFFICE: +64(4)499-2267
Survey for nothing with http://survey.net.nz/
---------------------------------------------------------------------

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Andrew McMillan 2002-11-07 09:42:33 Re: Spaawn another process
Previous Message Andrew McMillan 2002-11-06 20:05:08 Re: Handling timestampz datatype