[java ee programming] Re: check user availability while his typing his name and password weakness

2010-12-14 Thread Saurabh Manohar
That's a very general Query. You can check user availability on two events.On value change of the text box, or after the user has completed the name and submitted the info. Better go for the later as 'Do' might not be available but 'Doe' would be. To check availability, you will have to see if the

[java ee programming] Re: jdbc

2010-03-26 Thread Saurabh Manohar
Dear Rafal, To identify the user, you will need to use a login screen, accept the user's credentials and then display the contenet accordingly. Saurabh On Mar 25, 10:27 am, Rafał Laczek wrote: > Hi, > In my application to extract data I use JDBC. > The application is to display data according to

[java ee programming] How can I set the classpath in the program?

2010-01-12 Thread Saurabh Manohar
Hi All, I have a program which takes the classpath from the user as a variable. Can I include the path when I run the program itself. Lets say the user inputs "C:\Data\Lib" as the path for libraries, how can I include the classpath when making a call to a method in the program itself. Or would read