Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
28 views

NHibernate PocoEntityTuplizer is setting entities to “dirty”. How do I stop this?

Some of my objects in my database use 0 for a non existent relationship. So I setup a NullableTuplizer class. I found the code for this online. It has worked so far, but I noticed an issue. We have ...
2
votes
1answer
106 views

Best way to do a “dirty read” of an object that may be locked by another thread in objective-c

I was wondering if the following is the best way to read and make a copy an object that may be locked by another thread? -(NSObject*) getCopyOfActiveObjectsOfType:(Class) objectClass { ...
1
vote
1answer
39 views

How to write SQL to Update and void Deadlock?

I need to perform this SQL very frequently UPDATE Users SET UserPoint=UserPoint+(@UserPoint) WHERE UserID=@UserID I can allow dirty-read or dirty-write but I do not want to see deadlock, is there ...
1
vote
2answers
82 views

entity framework - does this do a dirty read?

I have a bit of linq to entities code in a web app. It basically keeps a count of how many times an app was downloaded. I'm worried that this might happen: Session 1 reads the download count (eg. ...
1
vote
1answer
31 views

Will the select interfered by DML

When using clean read (Read committed)... Will a select query be interfered by another DML (Insert, Update, Delete) query ? If yes, can you provide some cases. I'm using SQL Server 2005. What is ...
1
vote
1answer
56 views

Data access strategy for a site like SO - sorted SQL queries and simultaneous updates that affect the sort?

I'm working on a Grails web app that would be similar in access patterns to StackOverflow or MyLifeIsAverage - users can vote on entries, and their votes are used to sort a list of entries based on ...
1
vote
4answers
770 views

Why does Perl's DBI complain about “Fetch attempted on unopen cursor”?

Here is my script: $db_handle=DBI->connect("$dbstr", "", "", {RaiseError => 0, AutoCommit => 0, PrintError => 1}) || die "Connect error: $DBI::errstr" ; ...