Does ActiveRecord support locks and updates?

ActiveRecord doesn't seem to support record locking and database updates. How do I synchronize updates in disconnected multi-user environments such as websites and web services?

+1


source to share


1 answer


If you are talking about Castle ActiveRecord (for .Net) then I would believe you can use all concurrency models supported by NHibernate. For example with the version column:



http://www.darkside.co.za/archive/2008/05/20/castle-activerecord-using-the-version-attribute.aspx

+2


source







All Articles