IDbCommandBuilder ???

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Steven Blair

    IDbCommandBuilder ???

    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 IDbCommandBuild er :|

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

    Regards,

    Steven




    *** Sent via Developersdex http://www.developersdex.com ***
  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: IDbCommandBuild er ???

    Steven,

    In .NET 2.0, there is a DbCommandBuilde r 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 Paldino [.NET/C# MVP]
    - mvp@spam.guard. caspershouse.co m

    "Steven Blair" <steven.blair@b tinternet.com> wrote in message
    news:eEc5CV1eFH A.1504@TK2MSFTN GP15.phx.gbl...[color=blue]
    > 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 IDbCommandBuild er :|
    >
    > Anyone encountered this problem and if so, suggest an alternative?
    >
    > Regards,
    >
    > Steven
    >
    >
    >
    >
    > *** Sent via Developersdex http://www.developersdex.com ***[/color]


    Comment

    • Steven Blair

      #3
      Re: IDbCommandBuild er ???

      Nicholas,

      Thats exactly what I needed :)

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

      Regards,

      Steven



      *** Sent via Developersdex http://www.developersdex.com ***

      Comment

      Working...