|
-
Jul 6th, 2001, 02:47 PM
#1
Thread Starter
Lively Member
case sensitive
Select * from psUser where Password = 'Password' and userid = 'userid'
if recordcount > 0 then -------
Can I ask you how to make this case sensitive. Because I want to check password and userid by case sensitive
-
Jul 6th, 2001, 05:57 PM
#2
Frenzied Member
Code:
SELECT
*
FROM
psUser
WHERE
StrComp(Password, "Password", 0) = 0 AND
StrComp(userid , "userid", 0) = 0
You can check this out from MSDN. Now, the article is about joins, but the theory is the same.
oOOo--oOOo
__ /\/\onte96
oOOo--oOOo
Senior Programmer/Analyst
MCP
[email protected]
[email protected]
Your results may vary.. some restrictions may apply.. pricing and participation may vary.. not available in all states.. professional driver closed course..quantities limited..
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|