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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top