Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
7answers
2k views

How to make Subversion (or any program) perform periodic commits?

I want to configure my computer so that say every half an hour it automatically commits the program I am working on. I am using a svn repository so even if it was just a script that ran 'svn ci' every ...
4
votes
1answer
981 views

JDBC commit failed, calling commit when autocommit=true. Multithreaded hibernate session somehow changing autocommit?

I have the main thread that spawns thread #2 which uses the same hibernate Session in the main thread. Thread #2 just does a "select 1" every few min to keep the db connection alive because of a long ...
3
votes
3answers
5k views

How do I turn off autocommit for a MySQL client?

I have a web app that has been written with the assumption that autocommit is turned on on the database, so I don't want to make any changes there. However all the documentation I can find only seems ...
2
votes
1answer
77 views

SVN Commit certificate issue

I have a cronjob which commits some files every five minutes. However, it is not working anymore. It prints Error validating server certificate for 'https://xx.xx.xx.xx:443': - The certificate ...
2
votes
1answer
276 views

Commit to multiple branches at the same time with git

I have two branches A and B in a project that I am working on. B differs from A by a single commit, which is a section of the code completely independent from what I'm working on for the next while ...
2
votes
2answers
621 views

DBI database handle with AutoCommit set to 0 not returning proper data with SELECT?

This is a tricky one to explain (and very weird), so bear with me. I will explain the problem, and the fix for it, but I would like to see if anyone can explain why it works the way it works :) I ...
2
votes
2answers
434 views

Disable autocommit during hundreds of MySQL UPDATE statements in Django program

In a Django program, how to explicitly disable auto transaction management before hundreds of UPDATEs and enable it after the UPDATEs finish? I looked into ...
2
votes
3answers
8k views

How do you set autocommit in an SQL Server session?

How do you set autocommit in an SQL Server session?
2
votes
1answer
2k views

SQLite error: cannot commit transaction - SQL statements in progress using Java Code

I am facing an SQLite error though I am not using any explicit AutoCommit true or false. can anyone provide any input on this error. What are the situation where you will get this error. Thanks in ...
1
vote
2answers
28 views

single “commit” statement without “begin transaction”

i'm using web2py dal with mysqldb adapter to connect to mysql server. my question: why does it need a single "commit" without leading "begin transaction" after "set autocommit=0" does "select" ...
1
vote
1answer
185 views

DBI begin_work doesn't work with stored procedure calls

I am trying to make a call to a stored procedure from with in a transaction in its simplified form: my $dbh= DBI->connect(............ ); my $sth = $dbh->prepare("call sp_get_workitems ...
1
vote
1answer
197 views

Auto-commit directory tree to SVN with Java

I want autocommit directory tree with files to svn with java tool. There are shell and bat script bat for /f "tokens=2*" %%i in ('svn status %1 ^| find "?"') do svn add "%%i" for /f "tokens=2*" %%i ...
1
vote
1answer
183 views

JDBC auto commit for connection shared across threads

I have a servlet where I get a Connection object which is then handed to two worker threads for various activities. I now need to add a transaction on one thread. If I start a transaction like this: ...
1
vote
1answer
235 views

in mysql jdbc does auto commit affect all connections?

when using a connection pool, will setting a connection's autocommit = false affect this connection only? if i close this connection without setting autocommit = true and get a new connection will ...
1
vote
1answer
515 views

postgresql connection and setting autocommit off

I am programming in perl and have an existing connection (progammatically) with my postgres database. After the connection is established, I do not control the connection code, I want to set ...
1
vote
3answers
1k views

Large Objects may not be used in auto-commit mode

I have a Spring application which uses Hibernate on a PostgreSQL database. I'm trying to store files in a table of the database. It seems it stores the row with the file (I just use persist method on ...
1
vote
0answers
268 views

Problem with autocommit in ANT SQL task

I have an SQL script and want to apply it witn ANT task. This script clears out schema, creates new tables and views. The ANT defined task as follows: <sql driver="com.mysql.jdbc.Driver" ...
1
vote
3answers
385 views

What does Postgres do when BEGIN is run on a connection in autocommit mode?

I'm trying to better understand the concept of 'autocommit' when working with a Postgres (psycopg) connection. Let's say I have a fresh connection, set its isolation level to ...
0
votes
1answer
32 views

No AUTO COMMIT in Unit test for Hibernate with JPA annotation

I'm trying to create a unit test for my persistence code. I'm using Hibernate with JPA annotations. I do not have persistence.xml (which is used in all articles about JPA unit testing). I do not want ...
0
votes
2answers
59 views

disabling mysql autocommit in php does not work

Ofcourse I might be doing something wrong, but I don't really understand why and how. I want to disable autocommit in php script. this because my personal php mysql framework works that way. yet ...
0
votes
1answer
94 views

Autocommit mode for jdbc connection to Oracle from Java application

Do I have to call connection.setAutoCommit(false) in order to group a few DML statements in one transaction? I'm a bit confused because jdbc doc says that a new connection is created in auto-commit ...
0
votes
0answers
115 views

setting autoCommit in JBoss 6.x/sybase database

Below is my datasource config. when I print conn.getAutoCommit() for the connection received from this datasource, it returns true. As per this link http://community.jboss.org/thread/72010, we can't ...
0
votes
0answers
185 views

Problem with sqlalchemy autocommit in SQL Server

Task is to execute stored procedure which writes data to database in SQL Server 2008 using SQLAlchemy 0.7.1 in Python 2.7.2. SQLAlchemy uses pyodbc 2.1.8. When trying to use SQLAlchemy, data is not ...
0
votes
1answer
239 views

JBoss autocommit to Oracle doesnt work always

I have a very interesting situation. I am slightly new to JBoss and Oracle, having worked mostly with Weblogic on DB2. That said, what I am trying to do is pretty simple. I have a local-tx-datasource ...
0
votes
1answer
194 views

SolrJ: Disable Autocommit

We have an instance of Solr, where we've found that turning on autoCommit in the solrconfig.xml actually may serve our needs well. However there are some instances and some batch operations where ...
0
votes
1answer
217 views

PHP and MySQL: Running transactions yourself?

The idea of using transactions in MySQL is good. The idea of being able to rollback a transaction if something goes wrong is also good. My question is this: In an application, is it worth it to ...
0
votes
0answers
355 views

mysql insert question with autocommit=0 & commit

I have an innoDB table used for logging, before optimization each time an event happens the following SQL query is issues: INSERT INTO log_table(...) VALUES(..,..,..,...); Then I found this way ...
0
votes
0answers
76 views

JSF, postback and database alteration

I'm using JSF, Google App Engine, and OpenSessionInView (using Filter and ThreadLocal). My bean has a private field List<A> allElements; The property getAllElements() retrieves from the ...
0
votes
3answers
623 views

Atomikos rollback doesn't clear JPA persistence context?

I have a Spring/JPA/Hibernate application and am trying to get it to pass my Junit integration tests against H2 and MySQL. Currently I am using Atomikos for transactions and C3P0 for connection ...
0
votes
1answer
135 views

Subversion timed commit

I've got a folder under version control; the contents aren't source, but they are binaries that are modified frequently and would generally get committed once a day. Problem is, the consumers of ...
0
votes
1answer
644 views

java:not able to set auto commit mode with value false in java 1.4 api?

sql server 200 java 1.4 jboss 3 HI am getting exception message "You cannot set autocommit during a managed transaction" code is below try { try { connection = getConnection(); } ...
0
votes
2answers
303 views

Transactions, when should be discarded and rolledback

I'm trying to debug an application (under PostgreSQL) and came across the following error: "current transaction is aborted, commands ignored". As far as I can understand a "transaction" is just a ...