Click here to Skip to main content
15,896,269 members
Articles / Programming Languages / Visual Basic

An Easy Way To Query a Database

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
23 Feb 2011CPOL 5K   1  
Nice,How about adding a couple of other methodspublic static void Parameter(IDbCommand command, string naam, object value){ IDbDataParameter par = command.CreateParameter(); par.ParameterName = naam; par.Value = value ?? DBNull.Value; ...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
Netherlands Netherlands
Hi, people call me Prime(Coder), the name PrimeCoder stuck because I started as coder (nga); so it always said Coded by Prime or Code: Prime...

Thus Prime became PrimeCoder and still Prime sounds good enough.

Comments and Discussions