[PHP] RE: Address book - LDAP or MySQL?

2007-06-29 Thread Timothy Murphy
Jay Blanchard wrote: I'm thinking of setting up an address-book on my server, but I'm not sure whether to use LDAP or MySQL. First of all LDAP is not a database, it is a connection protocol that can connect to many things, most notably Active Directory seems to be the most popular usage.

RE: [PHP] RE: Address book - LDAP or MySQL?

2007-06-29 Thread Jay Blanchard
[snip] As I understand it, LDAP and MySQL offer two different ways of setting up a networked address book. So I take it they can be compared as far as that is concerned. Actually, I normally run Linux, so Active Directory would not be a priority for me. I didn't say LDAP was a database. However,

[PHP] Re: Address book - LDAP or MySQL?

2007-06-29 Thread Colin Guthrie
Jay Blanchard wrote: First of all LDAP is not a database, it is a connection protocol that can connect to many things, most notably Active Directory seems to be the most popular usage. Well I don't disagree with you - LDAP = Lightweight Directory Access Protocol. Therefore you cannot compare

RE: [PHP] RE: Address book - LDAP or MySQL?

2007-06-29 Thread bruce
Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Timothy Murphy Sent: Friday, June 29, 2007 7:02 AM To: php-general@lists.php.net Subject: [PHP] RE: Address book - LDAP or MySQL? Jay Blanchard wrote: I'm thinking of setting up an address-book on my server, but I'm not sure whether

Re: [PHP] RE: Address book - LDAP or MySQL?

2007-06-29 Thread Nathan Nobbe
i havent worked w/ LDAP and PHP together as of yet; but maybe i can jump in the conversation and share some of my thoughts on the topic.. in terms of options for Timothy's address book the data for the address book will need to be stored somewhere. since Timothy is already using MySQL that

RE: [PHP] Re: Address book - LDAP or MySQL?

2007-06-29 Thread Jay Blanchard
[snip] Erm, have you heard of OpenLDAP? It's probably the widest used one. AFAIK it's on all OSX machines (used interanlly from what I can gather) and is very widely used on Linux. [/snip] Yes, and I use it extensively. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] RE: Address book - LDAP or MySQL?

2007-06-29 Thread Jay Blanchard
[snip] umm... not sure who posted that ldap isn't a database... ldap isn't a database like oracle, mysql, sybase, etc.. it's meant to be a kind of lightweight database/protocol for establishing user address book kinds of information, normally used for user id/auth processes. [/snip] Twas me.

Re: [PHP] RE: Address book - LDAP or MySQL?

2007-06-29 Thread Nathan Nobbe
Ed, Im not sure if OpenLDAP or other can use a different backed, such as MySQL. I suspect there would be a server to support this, but it would almost certainly define the table structure in the database of choice. From the sound of it there are ways to change the information model of X.500

RE: [PHP] RE: Address book - LDAP or MySQL?

2007-06-29 Thread Edward Kay
On 6/29/07, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] As I understand it, LDAP and MySQL offer two different ways of setting up a networked address book. So I take it they can be compared as far as that is concerned. Actually, I normally run Linux, so Active Directory would

Re: [PHP] RE: Address book - LDAP or MySQL?

2007-06-29 Thread Nathan Nobbe
On 6/29/07, Jay Blanchard [EMAIL PROTECTED] wrote: Twas me. LDAP is not a database it is a protocol for accessing a directory service which is the abstraction layer for the actual data repository namespace. And an LDAP server will typically house said repository namespace. Like OpenLDAP using

[PHP] Re: Address book - LDAP or MySQL?

2007-06-29 Thread Colin Guthrie
Nathan Nobbe wrote: On 6/29/07, Jay Blanchard [EMAIL PROTECTED] wrote: Twas me. LDAP is not a database it is a protocol for accessing a directory service which is the abstraction layer for the actual data repository namespace. And an LDAP server will typically house said repository