Re: help

Поиск
Список
Период
Сортировка
От Andreas Kretschmer
Тема Re: help
Дата
Msg-id 20060129083921.GA12003@KanotixBox
обсуждение исходный текст
Ответ на help  ("Paolo Ditto" <paolo_ditto@libero.it>)
Список pgsql-general
Paolo Ditto <paolo_ditto@libero.it> schrieb:

> Hi.
> I would want do a php script to access my postgres database from
> remote host. I would like to know how I can do. Particularly, I would

1. you database must listen on TCP/IP and
2. the remote host needs privileges to connect to the DB
   Read
   http://www.postgresql.org/docs/current/static/client-authentication.html
3. with php, you connect to the db:
   $db = pg_connect("host=server dbname=database user=db_user");
   $result = pg_exec($db, $sql);

   There are any other functions like pg_numrows($result),
   pg_fetch_array($result, $i) and so on. Read the PHP-Doku.


> to know the default directory where my database is located so that to
> be able to call it with my php script.

Oh no, wrong. Access to the db with the php-functions, not directly in
the data directorys.


HTH, Andreas
--
Really, I'm not out to destroy Microsoft. That will just be a completely
unintentional side effect.                              (Linus Torvalds)
"If I was god, I would recompile penguin with --enable-fly."    (unknow)
Kaufbach, Saxony, Germany, Europe.              N 51.05082°, E 13.56889°

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

Предыдущее
От: Tony Caduto
Дата:
Сообщение: Re: Seeking a better PL/pgSQL editor-debugger
Следующее
От: Karsten Hilbert
Дата:
Сообщение: Re: creating users per database