I want to get all the names when I give firstletter.Query is like this.Ex:When I give fname as 'a' in
jsp then all names starts with 'a' has to come.Here I am using MS Access
select Employee_FName from UserTable where Employee_FName like '"+fname+"%'";
here fname I am getting from jsp.
I am not able to run this query.