how to access columns values without using the column name in my VB.Net pro

mrani

Member
Joined
Jul 13, 2005
Messages
6
Programming Experience
Beginner
how to access fields without using the column name in my VB.Net pro

hi all

my problem is i have to access records of too much tables but i have to fetch only their two fields. thats why i can't give the name of the column .

delete from " & x & " where field name=" & Val(TextBox1.Text) & " "

in my query instead of "field name" i want to use column number or may be index or something else so that i can access the first column of the table .so that it is suitable for each and every table."x" is my table name.
thanks

 
Back
Top