Data Retrieval

  • Thread starter Thread starter gkguthikonda
  • Start date Start date
G

gkguthikonda

Hi,
I am working with an Access Database where I have to retrieve the data
from the database based on the User input and on retrieval I have to
populate that record data in individual textboxes..
Can any one please help me over this...

Thanks in Advance,
GK.
 
Hi,

That's simple. Use the System.Data.OleDb namespace to access the Access DB
(see more info in MSDN on ADO .NET). Then use Windows Forms Data Binding
(again MSDN has a plenty of detail on it) to bind the text boxes to the
resultant DataSet.
 
Back
Top