Re: newby question

Lists: pgsql-general
From: Bernd Buldt <bernd(dot)buldt(at)uni-konstanz(dot)de>
To: pgsql-general(at)postgresql(dot)org
Subject: newby question
Date: 2004-10-01 09:59:30
Message-ID: p06110403bd82d5bee9a4@[134.34.91.239]
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

Howdy! I'd like to set up a database (mostly a bibliography), which
I'd like to connect to a webpage such that simple queries to the
database can be made by visitors of my homepage. I seem to remember
that FileMaker allows for this, but I'd prefer a UNIX-based solution
(under MacOS X). Hence my question (before I start digging): Can
anyone on the list confirm that this is doable (w/o too much hassles
) with PostGresQL? Thx for your time! Best, Bernd


From: Richard Huxton <dev(at)archonet(dot)com>
To: Bernd Buldt <bernd(dot)buldt(at)uni-konstanz(dot)de>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: newby question
Date: 2004-10-01 10:45:18
Message-ID: 415D353E.8080208@archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

Bernd Buldt wrote:
> Howdy! I'd like to set up a database (mostly a bibliography), which
> I'd like to connect to a webpage such that simple queries to the
> database can be made by visitors of my homepage. I seem to remember
> that FileMaker allows for this, but I'd prefer a UNIX-based solution
> (under MacOS X). Hence my question (before I start digging): Can
> anyone on the list confirm that this is doable (w/o too much hassles )
> with PostGresQL? Thx for your time! Best, Bernd

Can't say I've done it with MacOS-X, but Apache+PHP+PostgreSQL are a
common combination. Worth checking sourforge.net / freshmeat.net and see
if there are any projects doing what you want before starting your own
though.

--
Richard Huxton
Archonet Ltd


From: Kevin Barnard <kevin(dot)barnard(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: newby question
Date: 2004-10-01 14:26:43
Message-ID: b068057c041001072662dd35ba@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

Apache/PHP are already prebuilt on Mac OS X. All you need to do is
donwload the postgres tarball config and compile.

Small notte on the compile. When you compile postgres either turn off
readline support or download readline from GNU and compile the static
lib.

I don't remember off hand but I think an older version of Postgres is
compiled into the standard Mac PHP. If not it is fairly easy to
recomiple PHP on the Mac. If you have any further questions about
compiling ask I can walk you though it if you need.

On Fri, 01 Oct 2004 11:45:18 +0100, Richard Huxton <dev(at)archonet(dot)com> wrote:
> Bernd Buldt wrote:
> > Howdy! I'd like to set up a database (mostly a bibliography), which
> > I'd like to connect to a webpage such that simple queries to the
> > database can be made by visitors of my homepage. I seem to remember
> > that FileMaker allows for this, but I'd prefer a UNIX-based solution
> > (under MacOS X). Hence my question (before I start digging): Can
> > anyone on the list confirm that this is doable (w/o too much hassles )
> > with PostGresQL? Thx for your time! Best, Bernd
>
> Can't say I've done it with MacOS-X, but Apache+PHP+PostgreSQL are a
> common combination. Worth checking sourforge.net / freshmeat.net and see
> if there are any projects doing what you want before starting your own
> though.
>
> --
> Richard Huxton
> Archonet Ltd
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faqs/FAQ.html
>


From: Scott Frankel <leknarf(at)pacbell(dot)net>
To: Kevin Barnard <kevin(dot)barnard(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: newby question
Date: 2004-10-01 15:53:24
Message-ID: 06C8E028-13C2-11D9-9C92-000A95A7B782@pacbell.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general


Additional note: configure warned of an old version of bison when I
attempted an install of postgresql7.4.5 the other day. Seems the
version
that comes with OSX 10.3.x is too old for postgres.

Only trick I encountered in installing bison from tarball was locating
the
install product in /usr/local/bin and copying it to /usr/bin (either
because
that's where postgres wants to find it, or because my path does not
include
/usr/local).

Scott

On Oct 1, 2004, at 7:26 AM, Kevin Barnard wrote:

> Apache/PHP are already prebuilt on Mac OS X. All you need to do is
> donwload the postgres tarball config and compile.
>
> Small notte on the compile. When you compile postgres either turn off
> readline support or download readline from GNU and compile the static
> lib.
>
> I don't remember off hand but I think an older version of Postgres is
> compiled into the standard Mac PHP. If not it is fairly easy to
> recomiple PHP on the Mac. If you have any further questions about
> compiling ask I can walk you though it if you need.
>
>
> On Fri, 01 Oct 2004 11:45:18 +0100, Richard Huxton <dev(at)archonet(dot)com>
> wrote:
>> Bernd Buldt wrote:
>>> Howdy! I'd like to set up a database (mostly a bibliography), which
>>> I'd like to connect to a webpage such that simple queries to the
>>> database can be made by visitors of my homepage. I seem to remember
>>> that FileMaker allows for this, but I'd prefer a UNIX-based solution
>>> (under MacOS X). Hence my question (before I start digging): Can
>>> anyone on the list confirm that this is doable (w/o too much hassles
>>> )
>>> with PostGresQL? Thx for your time! Best, Bernd
>>
>> Can't say I've done it with MacOS-X, but Apache+PHP+PostgreSQL are a
>> common combination. Worth checking sourforge.net / freshmeat.net and
>> see
>> if there are any projects doing what you want before starting your own
>> though.
>>
>> --
>> Richard Huxton
>> Archonet Ltd
>>
>> ---------------------------(end of
>> broadcast)---------------------------
>> TIP 5: Have you checked our extensive FAQ?
>>
>> http://www.postgresql.org/docs/faqs/FAQ.html
>>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faqs/FAQ.html
>


From: Doug McNaught <doug(at)mcnaught(dot)org>
To: Scott Frankel <leknarf(at)pacbell(dot)net>
Cc: Kevin Barnard <kevin(dot)barnard(at)gmail(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: newby question
Date: 2004-10-01 16:08:39
Message-ID: 87y8iqifp4.fsf@asmodeus.mcnaught.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

Scott Frankel <leknarf(at)pacbell(dot)net> writes:

> Additional note: configure warned of an old version of bison when I
> attempted an install of postgresql7.4.5 the other day. Seems the
> version
> that comes with OSX 10.3.x is too old for postgres.

You only actually need Bison if you are building from CVS--the release
tarballs are pre-Bisonated, so you can ignore that warning. :)

-Doug
--
Let us cross over the river, and rest under the shade of the trees.
--T. J. Jackson, 1863


From: Scott Frankel <leknarf(at)pacbell(dot)net>
To: Doug McNaught <doug(at)mcnaught(dot)org>
Cc: pgsql-general(at)postgresql(dot)org, Kevin Barnard <kevin(dot)barnard(at)gmail(dot)com>
Subject: Re: newby question
Date: 2004-10-01 19:05:27
Message-ID: DAE6485E-13DC-11D9-9C92-000A95A7B782@pacbell.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general


Good to know ...
Scott

On Oct 1, 2004, at 9:08 AM, Doug McNaught wrote:

> Scott Frankel <leknarf(at)pacbell(dot)net> writes:
>
>> Additional note: configure warned of an old version of bison when I
>> attempted an install of postgresql7.4.5 the other day. Seems the
>> version
>> that comes with OSX 10.3.x is too old for postgres.
>
> You only actually need Bison if you are building from CVS--the release
> tarballs are pre-Bisonated, so you can ignore that warning. :)
>
> -Doug
> --
> Let us cross over the river, and rest under the shade of the trees.
> --T. J. Jackson, 1863
>