in case of ADOQuery instead of
Query1.ParamByName('userna
you must use
ADOQuery1.Parameters.Param
Steve...
Main Topics
Browse All TopicsHi experts,
I have the following code and it is working fine with normal Query component from delphi
Query1.ParamByName('userna
Query1.ParamByName('passwo
but when I want to use ADOQuery like this:
ADOQuery1.ParamByName('use
ADOQuery1.ParamByName('pas
the ParamByName and AsString appears to be incorrect...
any possible way to make this work?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
bokist,
I like your comment... I have now something like the following
ADOQuery1.Close;
ADOQuery1.SQL.Clear;
ADOQuery1.SQL.Add('select count(*) compare from smsystem.users T ');
ADOQuery1.SQL.Add('where (T.username =:username) ');
ADOQuery1.SQL.Add('and (T.password =:password) ');
ADOQuery1.Parameters.Param
ADOQuery1.Parameters.Param
ADOQuery1.Open;
Label2.Caption:=ADOQuery1.
but Label2 always shows me 1. If the password is wrong Label2 should be 0 but its always 1.
why is that?!
You should do it this way:
ADOQuery1.Close;
ADOQuery1.SQL.Clear;
ADOQuery1.SQL.Add('select username from smsystem.users ');
ADOQuery1.SQL.Add('where username =:username ');
ADOQuery1.SQL.Add(' and password =:password ');
ADOQuery1.Parameters.Param
ADOQuery1.Parameters.Param
ADOQuery1.Open ;
if EOF then // no matching records - something is wrong (username or password)
else // OK - Record found
There was a misprint in last line, right way is:
ADOQuery1.Close;
ADOQuery1.SQL.Clear;
ADOQuery1.SQL.Add('select username from smsystem.users ');
ADOQuery1.SQL.Add('where username =:username ');
ADOQuery1.SQL.Add(' and password =:password ');
ADOQuery1.Parameters.Param
ADOQuery1.Parameters.Param
ADOQuery1.Open;
if ADOQuery1.EOF then // no matching records - something is wrong (username or password)
else // OK - Record found
Business Accounts
Answer for Membership
by: gtworekPosted on 2009-08-20 at 00:55:45ID: 25140083
Do you need to call SQL stored procedure? In such case you should use TADOStoredProc.