12
votes
5answers
1k views
Transactions in .net
What are the best practices to do transactions in C# .Net 2.0. What are the classes that should be used? What are the pitfalls to look out for etc. All that commit and rollback stuff. I'm just …
11
votes
7answers
1k views
Is there a difference between commit and rollback in a transaction only having selects?
The in-house application framework we use at my company makes it necessary to put every SQL query into transactions, even though if I know that none of the commands will make changes in the database. …
11
votes
10answers
570 views
Unit-Testing Databases
This past summer I was developing a basic ASP.NET/SQL Server CRUD app, and unit testing was one of the requirements. I ran into some trouble when I tried to test against the database. To my …
9
votes
6answers
491 views
Is transactional behaviour ever needed outside of databases?
I wouldn't dare do anything complex in a database without transactions. There is nearly always a simple to use in-built command. But when you start working with other persistent data you just don't …
8
votes
2answers
1k views
On using Terracotta as a persistence solution.
Would it be a good idea to use Terracotta as a persistence solution (replacing a database)? I'm specifically wondering about data integrity issues and support for transactional systems.
8
votes
8answers
825 views
Transactions best practices
How much do you rely on database transactions?
Do you prefer small or large transaction scopes ?
Do you prefer client side transaction handling (e.g. TransactionScope in .NET) over server
side …
7
votes
4answers
142 views
TransactionScope automatically escalating to MSDTC on some machines?
In our project we're using TransactionScope's to ensure our data access layer performs it's actions in a transaction. We're aiming to not require the MSDTC service to be enabled on our end-user's …
7
votes
3answers
145 views
What is the best Clustering or Distributed System solution for Java applications
What are the best approaches to clustering/distributing a Java server application ?
I'm looking for an approach that allows you to scale horizontally by adding more application servers, and more …
7
votes
3answers
151 views
Un-committed database transactions and auto-increment columns
I encountered some curious behavior today and was wondering if it is expected or standard. We are using Hibernate against MySQL5. During the course of coding I forgot to close a transaction, I …
7
votes
3answers
2k views
TransactionScope vs Transaction in linq2sql
What are the differences between the classic transaction pattern in linq to sql like:
using( var context = Domain.Instance.GetContext() ) {
try {
context.Connection.Open();
…
6
votes
5answers
97 views
NHibernate Transactions on Reads
I have read the documentation and explanation on why it is highly recommended to use transactions on read operations in NH. However, I still haven't totally "bought" into it yet. Can someone take a …
6
votes
2answers
280 views
Migrating application to use Guice - how to inject transactions into existing objects?
I'm new to Guice, and I'm working it in to an application with a large amount of legacy code. It has several classes that look like this:
public final class DataAccessClass {
private …
6
votes
4answers
506 views
What is the best default transaction isolation level for an ERP, if any?
Short background: We are just starting to migrate/reimplement an ERP system to Java with Hibernate, targeting a concurrent user count of 50-100 users using the system. We use MS SQL Server as database …
6
votes
10answers
1k views
Should I commit or rollback a read transaction?
I have a read query that I execute within a transaction so that I can specify the isolation level. Once the query is complete, what should I do?
Commit the transaction
Rollback the transaction
Do …
6
votes
3answers
952 views
When do transactions start when using (restful) rails
Is it the case that the entire restful verb is under a single all encompassing transaction? That is to say, if I raise a Error in the validation or callbacks at any point in the handling of a UPDATE, …
