Daniel Clark
Dan is a Microsoft Certified Trainer, Microsoft Certified Solution Developer, and a Microsoft Certified Database Administrator. For the past seven years he has developed applications and trained others how to develop applications using Microsoft technologies. Dan has been developing and training Microsoft's .NET technologies since the early betas. He has recently wrote An Introduction to Object-Oriented Programming with Visual Basic .NET published by Apress.
Articles Authored
-
Using Stored Procedures in Conjunction with the SqlDataAdapter
Last updated: Wednesday, August 31, 2022
Published in: CODE Magazine: 2003 - March/April
A well-designed application that uses a relational database management system in the backend should make extensive use of stored procedures.A stored procedure is a named collection of SQL statements that you store in a database. To the client, a stored procedure acts similar to a function. You call the stored procedure by name, you can pass it parameter values, and it can return parameter values back to your client.