Re: [Dbmail] Infrastructure for LDAP: auth_connect calls

2003-02-02 Thread Aaron Stone
Oh, wait, it's no good unless db_connect() also gets more connection handling smart, because essentially it would be writing this: db_connect(); db_connect(); Which would leak the first a connection into thin air! Aaron On Sun, 2 Feb 2003, Aaron Stone wrote: > Yes, this would work well, but I

Re: [Dbmail] Infrastructure for LDAP: auth_connect calls

2003-02-02 Thread Aaron Stone
Yes, this would work well, but I believe there were a few posts which Roel responded to a while back regarding a split of auth and storage databases. For example, if someone already had a big mysql user base, but wanted to store their messages in posgres? Aaron On Sun, 2 Feb 2003, Eelco van Beek

Re: [Dbmail] Infrastructure for LDAP: auth_connect calls

2003-02-02 Thread
hmm, i think auth* calls that are used by db* calls should be implemented in db.h. i.e: int auth_connect () { return (db_connect()); } Don't shoot me on the prototype, it's just an example. Eelco On zondag, feb 2, 2003, at 03:01 Europe/Amsterdam, Aaron Stone wrote: In the coming r