(If I'm overlooking anything, please let me know.)
First, my only concern is updating single records in a Detailsview using an
ObjectDataSource. The target table has a timestamp field. Assume a singl
e
primary key.
Create your xsd. Drag the table onto the xsd. Then manually edit the
Update statement to simplify it. Essentially 'Update <table> set blah = bla
h
Where (PK=@dotnet.itags.org.PK) and (ts=@dotnet.itags.org.ts)'. (Get rid of all that auto-generated 'original
'
stuff. Also those IsNulls. They don't seem to serve any purpose except to
confuse. Don't use the Optimistic Concurrency option in the wizard.)
Get the record into the detailsview any way you see fit. I generally use
the first select statement to populate a grid and then call the detailsview
through a hyperlink. Then I create a 2nd select by PK.
Bind your detailsview. Here's the critical step. Add the timestamp field
to the DataKeyNames property of the detailsview (since the timestamp datatyp
e
can't be passed any other way apparently.)
Next, add the following code to the Object Data Source Updating event
handler: e.InputParameters.Item("ts") = DetailsView1.DataKey.Item(1)
That's it. The only other thing you really have to do is check the
e.ReturnValue in the Object Data Source Updated. 1 is success, 0 is failure
.
(For some reason the AffectedRows parameter is always returning -1)
Apparently if you use this sort of method, you are responsible for reporting
success or failure on the webpage. (Actually I was expecting a crash when I
tried to update an already updated record, but so much the better.)
One last question: Why have I not seen this in any tutorial?I think you've got a good tutorial, but I don't think you've discovered
anything new.
/url]
[url]http://davidhayden.com/blog/dave/archive/2005/10/05/2503.aspx" target="_blank">http://www.google.com/search?hl=en&...10/05/2503.aspx
Optimistic Concurrency Strategies
If you are in a performance state-of-mind, chances are you will go with
optimistic concurrency. Optimistic concurrency frees up database resources
as quickly as possible so that other users and processes can act upon that
data as soon as possible.
To the best of my knowledge, there are four popular strategies to dealing
with optimistic concurrency:
1.. Do Nothing.
2.. Check for changes to all fields during update.
3.. Check for changes to modified fields during update.
4.. Check for changes to timestamp ( rowversion ) during update.
I agree the N number of "OriginalThis" and "OriginalThat" is a pain is
overkill and ugly and non maintainable.
..
Start a blog, post your tutorial...then others can learn from your example.
Windows Live has free blog space.
http://sholliday.spaces.live.com/blog/
"B. Chernick" <BChernick@.discussions.microsoft.com> wrote in message
news:9545779F-7248-4772-9444-8854A18BDD1F@.microsoft.com...
> (If I'm overlooking anything, please let me know.)
> First, my only concern is updating single records in a Detailsview using
> an
> ObjectDataSource. The target table has a timestamp field. Assume a
> single
> primary key.
> Create your xsd. Drag the table onto the xsd. Then manually edit the
> Update statement to simplify it. Essentially 'Update <table> set blah =
> blah
> Where (PK=@.PK) and (ts=@.ts)'. (Get rid of all that auto-generated
> 'original'
> stuff. Also those IsNulls. They don't seem to serve any purpose except
> to
> confuse. Don't use the Optimistic Concurrency option in the wizard.)
> Get the record into the detailsview any way you see fit. I generally use
> the first select statement to populate a grid and then call the
> detailsview
> through a hyperlink. Then I create a 2nd select by PK.
> Bind your detailsview. Here's the critical step. Add the timestamp field
> to the DataKeyNames property of the detailsview (since the timestamp
> datatype
> can't be passed any other way apparently.)
> Next, add the following code to the Object Data Source Updating event
> handler: e.InputParameters.Item("ts") =
> DetailsView1.DataKey.Item(1)
> That's it. The only other thing you really have to do is check the
> e.ReturnValue in the Object Data Source Updated. 1 is success, 0 is
> failure.
> (For some reason the AffectedRows parameter is always returning -1)
> Apparently if you use this sort of method, you are responsible for
> reporting
> success or failure on the webpage. (Actually I was expecting a crash when
> I
> tried to update an already updated record, but so much the better.)
> One last question: Why have I not seen this in any tutorial?
I don't think that the timestamp method is "bad", per se, but I much prefer
checking modified fields.
The problem with timestamps is that they give "false positives" - meaning
that a user may encounter a "concurrency error" when none really exists. For
example, one user changes the address and another user changes the phone
number. There is no concurrency issue there, but the timestamp method will
report one anyway.
It depends on your application requirements, how many concurrent updates you
expect to see, and how difficult it is for users to recover from concurrency
issues. The timestamp approach seems to be pretty easy to implement, and if
time is the limiting factor that they are probably the way to go.
"sloan" <sloan@.ipass.net> wrote in message
news:O4oeL7YQIHA.2208@.TK2MSFTNGP06.phx.gbl...
> I think you've got a good tutorial, but I don't think you've discovered
> anything new.
> /url]
> [url]http://davidhayden.com/blog/dave/archive/2005/10/05/2503.aspx" target="_blank">http://www.google.com/search?hl=en&...10/05/2503.aspx
> Optimistic Concurrency Strategies
> If you are in a performance state-of-mind, chances are you will go with
> optimistic concurrency. Optimistic concurrency frees up database
> resources as quickly as possible so that other users and processes can act
> upon that data as soon as possible.
> To the best of my knowledge, there are four popular strategies to dealing
> with optimistic concurrency:
> 1.. Do Nothing.
> 2.. Check for changes to all fields during update.
> 3.. Check for changes to modified fields during update.
> 4.. Check for changes to timestamp ( rowversion ) during update.
>
> I agree the N number of "OriginalThis" and "OriginalThat" is a pain is
> overkill and ugly and non maintainable.
> ..
> Start a blog, post your tutorial...then others can learn from your
> example.
>
> Windows Live has free blog space.
>
> http://sholliday.spaces.live.com/blog/
>
>
> "B. Chernick" <BChernick@.discussions.microsoft.com> wrote in message
> news:9545779F-7248-4772-9444-8854A18BDD1F@.microsoft.com...
>
Thursday, March 22, 2012
Optimistic concurrency. I've found a ridiculously easy method.
Labels:
anobjectdatasource,
asp,
concern,
concurrency,
detailsview,
ive,
method,
net,
optimistic,
overlooking,
records,
ridiculously,
single,
updating
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment