Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コードにupdate_recordset呼び出しがあり、この更新によって影響を受けた行数をエコー バックしたいと考えています。バージョン 2009 および 2012 では、RowCount()呼び出すことができる関数があります。
update_recordset
RowCount()
Dynamics 4.0 でこれを実現するにはどうすればよいですか?
select forupdateパフォーマンスが低下するため、これを通話に変更したくありません。
select forupdate
ありがとう!
4.0 ではselect count(RecId)...、更新前と同じトランザクションで実行することを除けば、他の解決策はないようです。
select count(RecId)...
RowCount() 機能はそれ以降のバージョンで実装されており、SQL Server に対して起動された対応するコマンドの情報を回復する方法はありません。
よろしくお願いします