using this SqlCommandBuilder

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tony Johansson

    using this SqlCommandBuilder

    Hello!

    When I use this SqlCommandBuild er will there be created sql command for all
    three sql statement(updat e,insert and delete)



    //Tony


  • Alberto Poblacion

    #2
    Re: using this SqlCommandBuild er

    "Tony Johansson" <johansson.ande rsson@telia.com wrote in message
    news:uwLoqEtAJH A.756@TK2MSFTNG P02.phx.gbl...
    When I use this SqlCommandBuild er will there be created sql command for
    all
    three sql statement(updat e,insert and delete)
    Only for simple SELECTs. If the Select has some complexity such as, for
    example, a Join of two tables, or a Group By clause, then the
    SqlCommandBuild er will not be able to generate the other statements.

    Comment

    Working...