Re: [PHP] php DBMS

2005-03-03 Thread Devraj Mukherjee
We have been looking at implmenting Prevalyer for PHP but it to us seems impossible to do as the PHP engine is not designed like an application server. To add to this we are now in the process of writing an entpire PHP app server and will then be writing the Prevalyer layer as well as DB

Re: [PHP] php DBMS

2005-03-03 Thread Jochem Maas
Richard Lynch wrote: Chris W. Parker wrote: Gerben mailto:[EMAIL PROTECTED] on Wednesday, March 02, 2005 10:22 AM said: Thanks for all your responses, but I think I wasn't clear enough of my intentions. Actually, that what I'm looking for; A database engine written in PHP. Even if something

Re: [PHP] php DBMS

2005-03-03 Thread Jochem Maas
Chris W. Parker wrote: Chris W. Parker on Wednesday, March 02, 2005 10:38 AM said: Gerben mailto:[EMAIL PROTECTED] on Wednesday, March 02, 2005 10:22 AM said: Thanks for all your responses, but I think I wasn't clear enough of my intentions. Actually, that what I'm looking for; A

Re: [PHP] php DBMS

2005-03-03 Thread M. Sokolewicz
Jochem Maas wrote: Chris W. Parker wrote: Chris W. Parker on Wednesday, March 02, 2005 10:38 AM said: Gerben mailto:[EMAIL PROTECTED] on Wednesday, March 02, 2005 10:22 AM said: Thanks for all your responses, but I think I wasn't clear enough of my intentions. Actually, that what I'm

[suspicious - maybe spam] Re: [PHP] php DBMS

2005-03-03 Thread Jochem Maas
... sqlite isn't written by the php devs. It's simply included in the distributions; just like bcmath is. SQLite itself is a free OS library, usable by pretty much everyone my apologies - i was under the impression that some/few of the php devs were also responsible for SQLite. -- PHP General

Re: [PHP] php DBMS

2005-03-02 Thread Gerben
Thanks for all your responses, but I think I wasn't clear enough of my intentions. Actually, that what I'm looking for; A database engine written in PHP. I know this is not the most effecient way, but I'm not planning to use it for heavy weight database-driven-application. I just want a way to

RE: [PHP] php DBMS

2005-03-02 Thread Chris W. Parker
Gerben mailto:[EMAIL PROTECTED] on Wednesday, March 02, 2005 10:22 AM said: Thanks for all your responses, but I think I wasn't clear enough of my intentions. Actually, that what I'm looking for; A database engine written in PHP. Even if something like this did exist why would you want it

RE: [PHP] php DBMS

2005-03-02 Thread Chris W. Parker
Chris W. Parker on Wednesday, March 02, 2005 10:38 AM said: Gerben mailto:[EMAIL PROTECTED] on Wednesday, March 02, 2005 10:22 AM said: Thanks for all your responses, but I think I wasn't clear enough of my intentions. Actually, that what I'm looking for; A database engine written

RE: [PHP] php DBMS

2005-03-02 Thread Richard Lynch
Chris W. Parker wrote: Gerben mailto:[EMAIL PROTECTED] on Wednesday, March 02, 2005 10:22 AM said: Thanks for all your responses, but I think I wasn't clear enough of my intentions. Actually, that what I'm looking for; A database engine written in PHP. Even if something like this did

[PHP] php DBMS

2005-02-28 Thread Gerben
Hi, I'm wondering if there is any DBMS, like MySQL, which is (fully) implemented in php. This so you don't have to buy a MySQL database. I'm currently trying to put something together, but this would be a waste of time if it already exists. greetings Gerben Holland -- PHP General Mailing List

Re: [PHP] php DBMS

2005-02-28 Thread John Holmes
Gerben wrote: I'm wondering if there is any DBMS, like MySQL, which is (fully) implemented in php. This so you don't have to buy a MySQL database. I'm currently trying to put something together, but this would be a waste of time if it already exists. SQLite is probably what you're after. It comes

Re: [PHP] php DBMS

2005-02-28 Thread Bret Hughes
On Mon, 2005-02-28 at 11:31, Gerben wrote: Hi, I'm wondering if there is any DBMS, like MySQL, which is (fully) implemented in php. This so you don't have to buy a MySQL database. I'm currently trying to put something together, but this would be a waste of time if it already exists.

Re: [PHP] php DBMS

2005-02-28 Thread Jochem Maas
Bret Hughes wrote: On Mon, 2005-02-28 at 11:31, Gerben wrote: Hi, I'm wondering if there is any DBMS, like MySQL, which is (fully) implemented what do you mean by 'fully' - there are lots of DB drivers implemented (as extensions) for php. in php. This so you don't have to buy a MySQL database.

Re: [PHP] php DBMS

2005-02-28 Thread Richard Lynch
Gerben wrote: I'm wondering if there is any DBMS, like MySQL, which is (fully) implemented in php. This so you don't have to buy a MySQL database. MySQL is free... So is PostgreSQL: http://postgresql.org But both packages are external software packages with API modules to use with PHP. I'm

Re: [PHP] php DBMS

2005-02-28 Thread rogerk
Quoting Richard Lynch [EMAIL PROTECTED]: Gerben wrote: I'm wondering if there is any DBMS, like MySQL, which is (fully) implemented in php. This so you don't have to buy a MySQL database. MySQL is free... MySQL is free for use with applications that are themselves open source. If

Re: [PHP] php DBMS

2005-02-28 Thread Bret Hughes
On Mon, 2005-02-28 at 13:35, Jochem Maas wrote: Bret Hughes wrote: Does MySQL cost money? I thought it was open source and available at no cost. true its free, but you can also run a comcercial version which gives you indemnity and support and stuff Google for instance are known to

Re: [PHP] php DBMS

2005-02-28 Thread Manuel Lemos
Hello, on 02/28/2005 07:21 PM [EMAIL PROTECTED] said the following: I'm wondering if there is any DBMS, like MySQL, which is (fully) implemented in php. This so you don't have to buy a MySQL database. MySQL is free... MySQL is free for use with applications that are themselves open source. If