Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[PHP] Open source project using php PostgreSQL functions?

5 views
Skip to first unread message

Jeff Ross

unread,
Nov 21, 2013, 11:43:45 AM11/21/13
to
Hi all,

I'm looking at moving some code away from the long deprecated PEAR::DB
but I want to move to the standard php Postgresql functions and not
another database abstraction layer like MDB2 or ADODB or even PDO. This
specific project will never use anything but PostgreSQL as its database.

Does anyone know of an open source php based project that I might look
through to see some sample code a little more complex than the examples
in the php documentation?

Thanks,

Jeff Ross




--
Sent via pgsql-php mailing list (pgsq...@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-php

Vincent

unread,
Nov 21, 2013, 12:06:38 PM11/21/13
to
On 21-11-13 17:43, Jeff Ross wrote:
> Hi all,
>
> I'm looking at moving some code away from the long deprecated PEAR::DB
> but I want to move to the standard php Postgresql functions and not
> another database abstraction layer like MDB2 or ADODB or even PDO.
> This specific project will never use anything but PostgreSQL as its
> database.
>
> Does anyone know of an open source php based project that I might look
> through to see some sample code a little more complex than the
> examples in the php documentation?
>
> Thanks,
>
> Jeff Ross
>
>
>

PDO is pretty much standard PHP these days, allthough I don't like it
much myself.
Why not write a simple class that does the database access for you? All
you really need is a method that
executes the query and either returns the result or throws an exception
when something goes wrong.
Anything ready-made is going to be a DAL, because that's what works best
and it's easier to maintain.

Guillaume Lelarge

unread,
Nov 21, 2013, 12:52:57 PM11/21/13
to
On Thu, 2013-11-21 at 09:43 -0700, Jeff Ross wrote:
> Hi all,
>
> I'm looking at moving some code away from the long deprecated PEAR::DB
> but I want to move to the standard php Postgresql functions and not
> another database abstraction layer like MDB2 or ADODB or even PDO. This
> specific project will never use anything but PostgreSQL as its database.
>
> Does anyone know of an open source php based project that I might look
> through to see some sample code a little more complex than the examples
> in the php documentation?
>

You should try POMM: http://pomm.coolkeums.org/


--
Guillaume
http://blog.guillaume.lelarge.info
http://www.dalibo.com

Jeff Ross

unread,
Nov 21, 2013, 4:10:02 PM11/21/13
to

On 11/21/13, 10:52 AM, Guillaume Lelarge wrote:
> On Thu, 2013-11-21 at 09:43 -0700, Jeff Ross wrote:
>> Hi all,
>>
>> I'm looking at moving some code away from the long deprecated PEAR::DB
>> but I want to move to the standard php Postgresql functions and not
>> another database abstraction layer like MDB2 or ADODB or even PDO. This
>> specific project will never use anything but PostgreSQL as its database.
>>
>> Does anyone know of an open source php based project that I might look
>> through to see some sample code a little more complex than the examples
>> in the php documentation?
>>
> You should try POMM: http://pomm.coolkeums.org/
>
>
Nice--I'll take a look at that.

Thanks!

John DeSoi

unread,
Nov 22, 2013, 12:57:36 PM11/22/13
to

On Nov 21, 2013, at 10:43 AM, Jeff Ross <jr...@wykids.org> wrote:

> Does anyone know of an open source php based project that I might look through to see some sample code a little more complex than the examples in the php documentation?

Not a project, but this is a simple abstraction that allows you to call Postgres functions as if they were PHP methods.


http://pgedit.com/resource/php/pgfuncall


John DeSoi, Ph.D.

Jeff Ross

unread,
Nov 22, 2013, 4:21:31 PM11/22/13
to
On 11/22/13, 10:57 AM, John DeSoi wrote:
> On Nov 21, 2013, at 10:43 AM, Jeff Ross <jr...@wykids.org> wrote:
>
>> Does anyone know of an open source php based project that I might look through to see some sample code a little more complex than the examples in the php documentation?
> Not a project, but this is a simple abstraction that allows you to call Postgres functions as if they were PHP methods.
>
>
> http://pgedit.com/resource/php/pgfuncall
>
>
> John DeSoi, Ph.D.
>
Very interesting--thanks! I'll have to also look at the TextMate editor.

Jeff
0 new messages