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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple DB commands

Status
Not open for further replies.

ColinM

Programmer
Jun 29, 2000
189
TH

This reduces the complexity of ADO.NET using an Application Block. There is also an application block for easier error handling in the table of contents

i.e.
DataSet ds = SqlHelper.ExecuteDataset(
connectionString,
CommandType.StoredProcedure,
"getProductsByCategory",
new SqlParameter("@CategoryID", categoryID));
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top