IDbCommandBuilder ???

  • Thread starter Thread starter Steven Blair
  • Start date Start date
S

Steven Blair

Hi,

I have been writing a Data library to hide Odbc, Ole,Sql, Oracle etc
from the user and have been using the Idb interface.
But there is no IDbCommandBuilder :|

Anyone encountered this problem and if so, suggest an alternative?

Regards,

Steven
 
Steven,

In .NET 2.0, there is a DbCommandBuilder class which serves as the base
for the various command builders. Before that, you will have to implement
your own abstract class or interface and define the various implementations
yourself.

Hope this helps.
 
Nicholas,

Thats exactly what I needed :)

I ahd coded a workaround which I can now happily delete ;)

Regards,

Steven
 
Back
Top