Click here to Skip to main content
15,886,110 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionrow and column access in database Pin
comp_j28-Jul-09 1:41
comp_j28-Jul-09 1:41 
AnswerRe: row and column access in database Pin
Blue_Boy28-Jul-09 1:56
Blue_Boy28-Jul-09 1:56 
AnswerRe: row and column access in database Pin
Abhishek Sur28-Jul-09 1:56
professionalAbhishek Sur28-Jul-09 1:56 
AnswerRe: row and column access in database Pin
Baran M28-Jul-09 2:04
Baran M28-Jul-09 2:04 
GeneralRe: row and column access in database Pin
comp_j28-Jul-09 2:30
comp_j28-Jul-09 2:30 
GeneralRe: row and column access in database Pin
Baran M28-Jul-09 2:32
Baran M28-Jul-09 2:32 
GeneralRe: row and column access in database Pin
comp_j28-Jul-09 3:02
comp_j28-Jul-09 3:02 
GeneralRe: row and column access in database Pin
Baran M28-Jul-09 7:28
Baran M28-Jul-09 7:28 
if I understood your requirement correctly, you want to compare the textbox value with a table's all columns. For that you can use that query. Sys.Columns is system table which contains all the table's columns. By referring the object_id you can fetch the required column.

select name from sys.columns
where object_id = (select object_id from sys.tables where name = 'customer')
and name = 'LastName'

If you have AdventureWorksLT database you can try this. Let us know whether it solves your problem.

Education is not a way to escape poverty — it is a way of fighting it.

AnswerRe: row and column access in database Pin
ais0728-Jul-09 2:07
ais0728-Jul-09 2:07 
QuestionAjax Pin
Ersan Ercek28-Jul-09 1:18
Ersan Ercek28-Jul-09 1:18 
AnswerRe: Ajax Pin
codingrocks28-Jul-09 1:31
codingrocks28-Jul-09 1:31 
AnswerRe: Ajax Pin
Vimalsoft(Pty) Ltd28-Jul-09 1:32
professionalVimalsoft(Pty) Ltd28-Jul-09 1:32 
GeneralRe: Ajax Pin
Ersan Ercek28-Jul-09 1:36
Ersan Ercek28-Jul-09 1:36 
GeneralRe: Ajax Pin
Vimalsoft(Pty) Ltd28-Jul-09 1:38
professionalVimalsoft(Pty) Ltd28-Jul-09 1:38 
GeneralRe: Ajax Pin
Ersan Ercek28-Jul-09 1:47
Ersan Ercek28-Jul-09 1:47 
GeneralRe: Ajax Pin
ais0728-Jul-09 1:50
ais0728-Jul-09 1:50 
GeneralRe: Ajax Pin
Baran M28-Jul-09 1:50
Baran M28-Jul-09 1:50 
GeneralRe: Ajax Pin
Blikkies28-Jul-09 1:54
professionalBlikkies28-Jul-09 1:54 
GeneralRe: Ajax Pin
Ersan Ercek28-Jul-09 2:00
Ersan Ercek28-Jul-09 2:00 
GeneralRe: Ajax Pin
Blikkies28-Jul-09 2:04
professionalBlikkies28-Jul-09 2:04 
GeneralRe: Ajax Pin
Ersan Ercek28-Jul-09 3:12
Ersan Ercek28-Jul-09 3:12 
GeneralRe: Ajax Pin
Blikkies28-Jul-09 3:29
professionalBlikkies28-Jul-09 3:29 
GeneralRe: Ajax Pin
Ersan Ercek28-Jul-09 4:09
Ersan Ercek28-Jul-09 4:09 
GeneralRe: Ajax Pin
Vimalsoft(Pty) Ltd28-Jul-09 1:55
professionalVimalsoft(Pty) Ltd28-Jul-09 1:55 
GeneralRe: Ajax Pin
Ersan Ercek28-Jul-09 2:01
Ersan Ercek28-Jul-09 2:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.