[sqlite] client/server

2005-06-07 Thread Martín Schamis
Hello, I´ve seen inthe sqllite page that,If you have many client
programs accessing a common database over a network, you should consider
using a client/server database engine instead of SQLite
 
1 .- This means that I can´t use a php on the web and the users acceding
to that page can`t modify the base ?
 
2.- Or there is a limi of users ? 
 
3.- If there is a limit waht is it ?
 
Thanks,
 
Martín



RE: [sqlite] client/server

2005-06-07 Thread Martín Schamis
Hi, Eugene and everybody.

The problem I have is this, I´m implementing a web aplication that will
require up to 300 users writing at
The same time to the database file simultaneously. The question is, if
sqllite will supported ?

Thanks for your help.

Martín

-Mensaje original-
De: Eugene Wee [mailto:[EMAIL PROTECTED] 
Enviado el: martes, 07 de junio de 2005 10:59
Para: sqlite-users@sqlite.org
Asunto: Re: [sqlite] client/server


Hi,

Martín Schamis wrote:
 1 .- This means that I can´t use a php on the web and the users
acceding
 to that page can`t modify the base ?
Not at all (if I correctly understand what you're trying to say).
For example, there exists a SQLite extension in PHP (which comes bundled
by 
default in PHP5, but currently does not support SQLite3).

 From what I see, the point that the documentation is trying to make is
that 
SQLite is not suitable when you're dealing with a congested network
environment. 
If you dont expect (many) users to be writing to the same database file 
simultaneously, SQLite may still be a feasible option.

Eugene Wee