-2
votes
0answers
17 views

@Transactional annotation - no transaction

I spent a lot of time on resolving problem with transactions started by @Transactional annotation but I can't find way how to start and commit transaction. Mabye I don't understande Spring ...
1
vote
0answers
30 views

share transaction among several connections

I wonder is it possible to share single database transaction among several physical connections? This question is caused by curiosity rather than real task. However I encountered a problem which I ...
0
votes
1answer
42 views

Is it mandatory to close transaction each time in Hibernate?

In Hibernate we close Session each time but is it necessary to close transaction each time in Hibernate or only transaction commit is sufficient?
0
votes
0answers
17 views

WebLogic and Global transaction in new unmanaged thread

On WebLogic 10.3.4 EJB session bean with CMP spawning new thread (i know its bad, but its reality). In this new thread its obtaining connection from datasource, perform some read transactions and ...
0
votes
1answer
41 views

Independent transactions in Spring JDBC

I'm using the Spring JDBC (JdbcTemplate/NamedParameterJdbcTemplate) and Spring TransactionManager (DataSourceTransactionManager) in my DAO class. I have at least 2 clients that simultaneously using ...
1
vote
0answers
90 views

Test jdbcTemplate.batchUpdate with rollback by default

I'm trying to test my dao, that uses jdbcTemplate.batchUpdate method under the hood. My tests are run against real datasource and all methods are performed in transactions marked as rollback-only ...
0
votes
1answer
70 views

Implementing Spring ChainedTransactionManager according to the “best efforts 1PC” pattern

The best effort 1PC is nicely described in this post. The author, David Syer, who works for SpringSource, provided an implementation of a ChainedTransactionManager extending the Spring ...
1
vote
1answer
72 views

Locking Tables with postgres in JDBC

Just a quick question about locking tables in a postgres database using JDBC. I have a table for which I want to add a new record to, however, To do this for the primary key, I use an increasing ...
1
vote
2answers
98 views

Call commit on autoCommit=false connection for SELECT statements JDBC?

I do have a webapp written in Java on Tomcat, all connections should be autoCommit=false by default. Now, if I do run SELECT statement only in a transaction. Do I still need to call commit() or is it ...
0
votes
1answer
864 views

hibernate.exception.GenericJDBCException: Cannot open connection

I am getting this error a lot of times when i am trying to open my application. Please help me understand this stack trace. Please find the stack trace here: [3/14/13 23:29:57:016 SGT] 00000029 ...
0
votes
0answers
39 views

Using @TableGenerator with Non-JPA

Abstract I'm using JPA with @TableGenerator for Ids. I have to make a fine method for sharing the mechanism for JDBC or PHP. Entity @Entity @Table(name = "T1") public class T1 { @Id ...
1
vote
1answer
112 views

PostgreSQL Transaction fails: “there is no transaction in progress”

I've got a pretty long transaction I'm trying to execute using JDBC for PostgreSQL. In JDBC I can't use COMMIT and ROLLBACK, so I'm trying to implement my desired behaviour in Java code... try { ...
0
votes
1answer
345 views

Transaction isolation level REPEATABLE_READ using hibernate and jdbc

I am trying to develop a demo to cement my understanding of the REPEATABLE_READ isolation level. I have tried demos using hibernate and jdbc. JDBC works as expected, however hibernate does not. My ...
0
votes
1answer
87 views

Propagate declarative spring transaction (Grails service) to pure JDBC code

I have a Grails service method which calls out to a plain Java class to save some data to a DB using JDBC. Next, the grails service method also writes to the same DB. This should all happen in the ...
0
votes
2answers
82 views

Hibernate Transaction Demarcation in a non Web application

I am new to Hibernate and I have some questions about transaction demarcations (I have already searched in Stack Overflow, the Hibernate Documentation.., but I haven't found the answer). First I ...
0
votes
4answers
113 views

Implementing a counter JDBC concurrency issues

I am trying to implement a counter in JDBC the method essentially increments a column value and returns the new column value, below is a snippet of my code i first perform a select .. for update to ...
2
votes
1answer
225 views

JDBC distributed transaction and explicit rollback/commit

I'm working on an existing project that's configured for distributed transaction. The project is using Hibernate but for some historical reasons, the part on which I'm working on uses JDBC and needs ...
1
vote
2answers
44 views

Performing the jdbc transaction in right way

I have a database table that logs the changes occur in other tables. table structure for my log table is as following. Log_Table(id, table_name, operation, flag) values (1, Customer_Table, ...
0
votes
2answers
585 views

Mule ESB 3 Transactional Flow Single Jdbc Resource Not Rolling Back (MSSQL & jtds)

EDIT: This only happens with MSSQL & jtds 1.2.6 Still investigating... **Duplicate of : Mule 3.3.0 Jdbc Transaction Undesired Commit **Mule Documentation sucks. I want to rollback everything ...
1
vote
2answers
72 views

JDBC Transaction not working

I have a simple database transaction like the code below. The first query should work fine while the second one should throw an exception and therefore the transaction should not go through! The ...
0
votes
0answers
58 views

Hive, how to manage transactions

please advice. I have a web-app that uses JDBC to query Hive. The problem is that: 1. My app issues SELECT with complicated aggregation(no problem here), let's call it SELECT_1 I send result of ...
1
vote
1answer
144 views

single Transaction across Hibernate session and plain jdbc

Is it possible to use a single Transaction boundary for Hibernate Session and a plain JDBC query. ? The database and the datasource configurations are similar for both.
0
votes
2answers
1k views

Spring : how to get multiple datasource with GenericDao?

i have a web application using Spring 3.1.1. We have a genericDao using JdbcTemplate. Datasource is injecting like this in the GenericDaoImpl. public class GenericDaoImpl<T extends ...
0
votes
0answers
113 views

How to maintain acid property of 3 sequential transaction of three diffrenet databases

I am currently working on a project where I have to use 3 three different databases. I am using jdbc 3, mysql 5.x ,struts2.x and hibernate3.x suppose these databases connections are x,y,z I have to ...
0
votes
1answer
46 views

Replacing Tuxedo calls with JDBC

I have been tasked with replacing some Tuxedo services with the equivalent JDBC calls. Considering a single Tuxedo service, I have started by creating a JDBC DAO, which implements the same interface ...
1
vote
0answers
291 views

proper iBatis method for SELECT ~~~ FOR UPDATE oracle SQL query?

I'm developing a web-based service using jBoss5 + Struts + iBatis. Is there any proper method for "SELECT ... FOR UPDATE" oracle query (I mean, select iBatis method which involves transaction ...
1
vote
1answer
240 views

Transaction/DB problems in asynchronous methods with Seam

I have a strange behaviour with Seam 2.2.2, JBoss 5.1, MySQL 5.1.5.1 and MySQL JDBC connector 5.1.12 and asynchronous methods (using quartz) and pojos. I've got a pool of 10 async threads for various ...
3
votes
1answer
437 views

Mule 3.3.0 Jdbc Transaction Undesired Commit

I'm trying to setup a dummy example of jdbc transaction to test commit and rollback. Here I've got : an http entrypoint to start flow, an insert on db a component that throw and exception an ...
0
votes
1answer
207 views

Java transaction - commit on conn doesn't

Suppose I have the following Java code fragment (where something like it is embedded in a legacy app) ... try { con.setAutoCommit(false); updateSales = con.prepareStatement(updateString); ...
0
votes
4answers
362 views

Oracle - How to execute transaction correctly?

My statement: statement.addBatch("START TRANSACTION;" + "UPDATE FIRST_TABLE SET FIRST_FIELD = 1;" + "UPDATE SECOND_TABLE SET SECOND_FIELD = 2;" + ...
0
votes
1answer
127 views

Creating JDBC transaction for second data source with existing connection pool in Glassfish

I have main data source for working with database, which uses some connection pool. Now I want to create a second data source, which would use the same connection pool to perform logging operations in ...
0
votes
0answers
252 views

Managing JDBC transaction inside EJB container transaction

I have an EJB, which has @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW). Inside EJB I have a logger, which has been configured to log into a database using JNDI appender and JDBC: ...
0
votes
1answer
104 views

JDBC / MySQL query and update in a transaction

Basically our user provisioning algorithm does something like -query for a new user -update database to show you have that user I'm wondering how to lock the ability for other instances of the ...
0
votes
1answer
328 views

JBoss transaction rollback with jdbc

I am using JBoss 4.0.4 GA as application server and EJB 2.x for coding logic and Mysql 5.1 as backend. I recently changed the commit-option in jboss configuration to "B", since we introduced some JDBC ...
0
votes
0answers
110 views

Managing transaction (non-xa or say local) in Mysql + JDBC + Tomcat

Please help me to solve this problems. My development sources Struts 1.3 Mysql 5.1.63 Tomcat 6.x and custom framework for Object relational mapping. what i have been trying to do since six last ...
1
vote
0answers
578 views

How can I resolve “Stored procedure 'MySP1' may be run only in unchained transaction mode” error?

I am writing a Java app which needs to do some complicated SQL and roll back all of it if any of it fails: Open Sybase connection using net.sourceforge.jtds.jdbc.Driver Call setAutoCommit(false) Do ...
0
votes
0answers
400 views

Is there a bug with “set chained” in setAutoCommit() in net.sourceforge.jtds.jdbc.Driver?

I am having some confusion with set chained statement in setAutoCommit() method in net.sourceforge.jtds.jdbc.Driver The source code says: 2161 if (serverType == Driver.SYBASE) { 2162 if ...
0
votes
1answer
152 views

How to create a new Hibernate transaction without a new connection?

How do I modify this code so that is does not use a new db connection but reuses the current one (from the enclosing transaction)? TransactionDefinition transactionDefinition = new ...
0
votes
0answers
253 views

“Lock wait timeout exceeded” on one database when the another database timeout

Background: Various databases are running on 1 mysql instance. There was this exception: javax.persistence.PersistenceException: org.hibernate.exception.GenericJDBCException: could not insert: .... ...
2
votes
4answers
2k views

Java + MySQL Transactions

This application run on multiple computers and all connects to the same MySQL database. I need transactions to make sure database is updated correctly. I have a problem with locks release. Read below. ...
2
votes
3answers
2k views

Spring @Transactional annotations ignored

My @Transactionnal annotations seems to be ignored. I have no errors on the initialization of the Spring container. It looks like my method has not been proxied by Spring TX framework. During the ...
2
votes
4answers
2k views

Spring MVC JDBC DataSourceTransactionManager: Data committed even after readonly=true

I am currently developing a Spring MVC application.I have configured a JDBC TransactionManager and I am doing declarative transaction management using AOP XML.However, even if I configure the method ...
0
votes
2answers
288 views

Hibernate transaction management without Spring

i want to use Hibernate without Spring, i setup Hiberante in this way: <property name="transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property> <property ...
1
vote
2answers
319 views

Why the rollback operation is not done after an exception came in my java code

I have a jdbc code in which I have used transaction management in code. Following is the code.I am using Mysql Database. public class JdbcConn { public static void main(String[] args){ Savepoint ...
1
vote
2answers
2k views

Spring TransactionManager - commit does not work

I am trying to create Spring-based solution for running batch of SQL queries on MySQL 5.5 server. By "query" I mean any SQL statement that compiles, so the SQL batch job can contain for example ...
0
votes
1answer
229 views

Rollback doesn't work in java

I have a method which does a simple mysql insert, when I tried to rollback the insert action as follow, on an error but it is not rollingback on errors, please assist me, public void ...
0
votes
1answer
922 views

Spring MVC and Hibernate configurations

I have been struggling with this problem for a few days now. I am building a spring mvc hibernate framework. I have the following configuration file Please follow this link for the config file : ...
0
votes
2answers
465 views

connection pooling: retrieve lost DB connection

I am implementing 2-phase commit for a distributed transaction(using 2 Databases). I simulate a DB server connection loss by pulling the network cable to my desk Computer and then plugging it back. ...
0
votes
1answer
427 views

DB2 deadlock issue SQLCODE=-911, SQLERRMC=68 while performing XA transaction

I am working on a sample jdbc code which tries to implement 2-phase commit. There are 2-datasources, both DB2 and XA compliant. There are 2 separate jdbc connections created. I am using Atomikos as ...
0
votes
1answer
288 views

Hibernate: java.sql.SQLException: Attempt to continue working after transaction rolledback

In Hibernate, while fetching an OBJECT from database following error occurred. Can you guys please let me know in what conditions would this error occur ? Nothing has been changed in the code. The ...

1 2 3