How to Implement IDBParameter Interface

  • Thread starter Thread starter puneet dhall via .NET 247
  • Start date Start date
P

puneet dhall via .NET 247

(Type your message here)
I want to implemnt the IDBParameter interface in my cutom class. I donot want to use the inbuid class
like oledb and SQL. Basically i want to create the object of IDBParameter and assign values to this interface.
 
Hi,

IDataParameter interface resides in System.Data namespace & it allows you to
implement your own object that can be consumed by SqlParameter,
OleDbParameter & other parameter classes.

More details can be found at
http://msdn.microsoft.com/library/d...frlrfsystemdataidataparametermemberstopic.asp

Regards
Joyjit

puneet dhall via .NET 247 said:
(Type your message here)
I want to implemnt the IDBParameter interface in my cutom class. I donot want to use the inbuid class
like oledb and SQL. Basically i want to create the object of IDBParameter
and assign values to this interface.
 
Back
Top