c# - using the update query with output clause in the dataadapter -


i using following query sqldataadapter's update command. example update employee set empage=@eage, empdob = @edob empid = @eid output deleted.*

i have read output clauses row rowupdated event handler. how do this.

i don't think can use rowupdated event accomplish this. since using custom update statement assume not using sqldataadapter.update() method raises rowupdated.

instead should execute query using sqldataadapter.fill(dataset). output rows stored in dataset.


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -