|
-
Nov 28th, 2003, 04:48 PM
#1
Thread Starter
Hyperactive Member
in vb.net programming, do we need to use lot of IDBConnection or IDBadapter..
can't we get away without using them?
I downloaded code from http://www.vbdotnetheaven.com/Code/Jun2003/2044.asp
He has written a generic data access class which return IDBconnection and IDBAdapter interfaces (i guess???)
basically I am able to connect to the database in either of the following ways...
dim cnconnection as sqlconnection
dim idbcon as IDBConnection
cnConnection = New SqlConnection("server=vaio;Trusted_Connection=yes;database=northwind")
idbcon = New SqlConnection("server=vaio;Trusted_Connection=yes;database=northwind")
I am getting confused about IDBCOnnection...
any thoughts when it would be of help?
thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|