HDN
HDN

Reputation: 91

TableAdapter Update function return

While programming, I notice that the tableadapter's update is a function and returns an integer. I'm wondering, what is the meaning of the return value?

I'm programming in VB Express 2010

Upvotes: 0

Views: 883

Answers (1)

Tomcat
Tomcat

Reputation: 614

It is returning the number of rows affected by the update. More information here: http://msdn.microsoft.com/en-us/library/bz9tthwx.aspx

Upvotes: 2

Related Questions