Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Authentication/Credentials

Status
Not open for further replies.

NovCoder

Programmer
Jun 3, 2005
8
0
0
US
HI, Can anyone help my ignorant self retrieve a username from a SQL database.

Situation: each person has a login name and full name in the database. When someone logs in I would like a txtbox display that login's full name. I haven't got the slightest idea what to do. what ever you can offer(HELPFUL codes, HELPFUL links, HELPFUL websites) would be greatly APPRECIATED

THANX

...and I'm out. O-BOY.
 
Do you have a 'user information' table that contains the SQL Server username and full name?

You will need such a table to store additional user information.


Then all you need to do is:
SELECT FullName FROM UserInformation WHERE Username LIKE 'me'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top