Re: [PHP-DEV] Database Abstraction

2003-02-05 Thread Hartmut Holzgraefe
Kasper Skårhøj wrote: but internally parses the queries and re-makes the query into something > Oracle or MSSql or some third DB would understand. This would be totally > transparent and give instant DBA to millions of PHP-scripts. A "MySQL emulator". ODBC does something similar AFAIK, just with

Re: [PHP-DEV] Database Abstraction

2003-02-05 Thread Daniel Lorch
hi, > There are millions of PHP-scripts using MySQL. Most of them probably doesn't > use an Database Abstraction Layer (DBAL) in order to support other databases. > [..] There are (too) many parallel efforts trying to create yet another database abstraction layer. We all know it's necessary, but

Re: [PHP-DEV] Database Abstraction

2003-02-05 Thread Derick Rethans
On Wed, 5 Feb 2003, [ISO-8859-1] "Kasper Skårhøj" wrote: > Hi folks. > > I have a question about database abstraction. If this is not the place > to ask, please redirect me. wrong list :) -> [EMAIL PROTECTED] Derick -- -

[PHP-DEV] Database Abstraction

2003-02-05 Thread "Kasper Skårhøj"
Hi folks. I have a question about database abstraction. If this is not the place to ask, please redirect me. There are millions of PHP-scripts using MySQL. Most of them probably doesn't use an Database Abstraction Layer (DBAL) in order to support other databases. When the requirement is made s

[PHP-DEV] database abstraction module under construction...

2001-02-09 Thread Marc Boeren
Hi! > I've started work on a database abstraction module (written in C) and was > wondering if anybody had any thoughts to add to mine in order to develop a > good solution. > The working name for this is the dbx-module. > The dbx-module will become available under an Open Source license (not >

RE: [PHP-DEV] database abstraction layers [from: MySQLfeature/bug]

2001-02-04 Thread Manuel Lemos
Hello Sean, On 04-Feb-01 16:09:21, you wrote: >This is something that PHP has always lacked. Its also something that I >have always found to be the most attractive about application servers like >Allaire's Cold Fusion (http://www.allaire.com/). The ability to totally >abstract database access

RE: [PHP-DEV] database abstraction layers [from: MySQLfeature/bug]

2001-02-04 Thread Sean R. Bright
http://www.seanbright.com/ === > -Original Message- > From: Manuel Lemos [mailto:[EMAIL PROTECTED]] > Sent: Sunday, February 04, 2001 2:12 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP-DEV] database abstraction layers [from: > MySQLfeature/bug] > > &

Re: [PHP-DEV] database abstraction layers [from: MySQLfeature/bug]

2001-02-04 Thread Manuel Lemos
Hello Mark, On 31-Jan-01 16:33:56, you wrote: >>> I have been crafting my own database abstraction layer, and in doing so >>> create an array of the results of a query. >> >> Is this an db abstraction layer written in php (script), or written as a >> module for php (C)? >> >> I was thinking of

RE: [PHP-DEV] database abstraction layers [from: MySQL feature/bug]

2001-02-01 Thread Marc Boeren
Hi, >I need to spend some time with the Zend API to see if it's really worth it >for my time to go about doing it, but yes, I am very much considering >turning it into C. >I've really been hoping that someone was going to take an intermediately >complex Zend extension and put together a how-to

RE: [PHP-DEV] database abstraction layers [from: MySQL feature/bug]

2001-02-01 Thread Marc Boeren
> do a search on Google for SQL Relay ... I have (just now), but it seems to do a great deal more than I have in mind (plus it needs daemons running that only run on linux/unix-like systems) and it uses it's own database functions instead of the modules that are already available to PHP... Che

Re: [PHP-DEV] database abstraction layers [from: MySQLfeature/bug]

2001-01-31 Thread Mark J. Hershenson
> >> I have been crafting my own database abstraction layer, and in doing so >> create an array of the results of a query. > > Is this an db abstraction layer written in php (script), or written as a > module for php (C)? > > I was thinking of writing an (open source) db-abstraction module (tha

Re: [PHP-DEV] database abstraction layers [from: MySQL feature/bug]

2001-01-31 Thread clayton collie
Marc, do a search on Google for SQL Relay ... "Marc Boeren" <[EMAIL PROTECTED]> wrote in message 7BE0F4A5D7AED2119B7500A0C94C58AC094C46@DELLSERVER">news:7BE0F4A5D7AED2119B7500A0C94C58AC094C46@DELLSERVER... > I know, but this is done in php-script, not as a php-module... wouldn't a > php-modul

RE: [PHP-DEV] database abstraction layers [from: MySQL feature/bug]

2001-01-31 Thread Marc Boeren
>there exists a db abstraction layer in the PEAR (pear.php.net) I know, but this is done in php-script, not as a php-module... wouldn't a php-module be more efficient (faster?) and less hassle to use for people (php compiled with dbal-module and eg mysql-module, users just type $handle=dbal_conn

AW: [PHP-DEV] database abstraction layers [from: MySQL feature/bug]

2001-01-31 Thread Harald Radi
there exists a db abstraction layer in the PEAR (pear.php.net) harald. > -Ursprüngliche Nachricht- > Von: Marc Boeren [mailto:[EMAIL PROTECTED]] > Gesendet: Mittwoch, 31. Jänner 2001 16:57 > An: '[EMAIL PROTECTED]' > Cc: 'Mark J. Hershenson' > B

[PHP-DEV] database abstraction layers [from: MySQL feature/bug]

2001-01-31 Thread Marc Boeren
>I have been crafting my own database abstraction layer, and in doing so >create an array of the results of a query. Is this an db abstraction layer written in php (script), or written as a module for php (C)? I was thinking of writing an (open source) db-abstraction module (that uses existing