Sorry, another out of topic.

Is it safe to use mySQL in cgi? I meant, if my update.pl perl cgi will do this :

   connect to mysql database
   insert into table values (values from FORM)
   ... other tasks ...
   close

What happen if there are, let say 100 people accessing that perl cgi? I meant maybe 
there will be
more than one connecting into database, is this ok?
Will the mysql database be corrupted? 

In old days, usually we have to LOCK database in multiuser environment :

   connect to mysql database
   lock database // so other user should WAIT before they can connect
   ...update/delete/insert/etc...
   unlock
   close

Thanks if you can enlighten me with current concept of mysql.

Regards,
kapot


__________________________________________________
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to