> are you sure? if 10 user at the same time press intro, > fired ongetdocument and using a Tdatabase-Tquery only > one of them is processing?
If you don't use multithreading yourself, the HTTP server component will serialize requests. This is very handy when processing for your requests is fast. But if you have lengthy SQL requests, you should use a thread to execute the request in the background. > What about Tsession,unique name, is that way? If you don't use multithreading, you don't need additional TSession component. The webserver will looks like a single user for the database. If you use multithreading, you must use separated components and sessions for each thread. -- Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] Author of ICS (Internet Component Suite, freeware) Author of MidWare (Multi-tier framework, freeware) http://www.overbyte.be -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be