Record Locking?

  • Thread starter Thread starter rsine
  • Start date Start date
R

rsine

How would I go about locking records using ADO.Net? It seems that everything
in ADO.Net is based upon opening a connection, retrieving data, and closing
the connection. To keep the records locked, is it as
simple as leaving the database connection open?

~Thanks
 
The norm is to handle concurrency issues rather than locking issues, as ADO
..NET is designed to be a disconnected methodology, while ADO was connected.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
Author: ADO.NET and XML: ASP.NET on the Edge

**********************************************************************
Think outside the box!
**********************************************************************
 
Back
Top