how to retrieve data from a database and display the data into the text box field?
Question: how to retrieve data from a database and display the data into the text box field?
( Back )
Answer #1:
I'm not familiar tiwh VS 2k8 just SQL. Your SQL statement will have to run "select" statements
for example lets say I have a table called people and this table stores firstname, lastname,birthday,phonenumber,email and sex
If I wanted everything I would simply say select * from people
but if I wanted certain sections I would say
select firstname; lastname; phonenumber from people some DBM (database manage systems might have slight variances but general that works. Do yahoo search on SQL Select to get more examples.
** Powered by Yahoo Answers