/*
* Copyright 2002 (C) TJDO.
* All rights reserved.
*
* This software is distributed under the terms of the TJDO License version 1.0.
* See the terms of the TJDO License in the documentation provided with this software.
*
* $Id: Transaction.java,v 1.2 2002/10/17 21:00:52 pierreg0 Exp $
*/
package com.triactive.jdo;
import java.sql.Connection;
import java.sql.SQLException;
public interface Transaction extends javax.jdo.Transaction
{
Connection getConnection(boolean forWriting) throws SQLException;
void releaseConnection(Connection conn) throws SQLException;
int getTransactionIsolation();
void setTransactionIsolation(int isolationLevel);
boolean useUpdateLockOnFetch();
}
|