资源简介
Programming with Transactions
Testing Commits and Rollbacks
Almost all commercial-strength DBMS software supports the ability to undo the effects of a transaction before those effects are committed to the database. This is particularly useful when an operation must be performed to completion or no

代码片段和文件信息
import java.util.*;
import java.io.*;
import java.text.*;
import java.sql.*;
/**
* A class representing the driver program to the
* SSD7 transaction exercise.
*
* @author CSSE 0902K Bek Zhuldyz
* @version 09.12.2011
*/
public class MovieTransaction
{
/**
* main method.
*
*/
public static void main( String [] args )
{
String [] movienames = new String[10];
String [] movietimes = new String[10];
String sqlquery = null;
String moviename = null;
String movietime = null;
ResultSet rset = null;
Connection conn = null;
Statement stmt = null;
BufferedReader keyIn = null;
String url = “jdbc:postgresql:zhuldyz“;
String username = “postgres“;
String password = “webuser“;
int position = 0 choice movie_id numseats availableseats;
try
{
// Create a BufferedReader to read input from the keyboard.
keyIn = new BufferedReader(new InputStreamReader(System.in));
// Load the PostgreSQL JDBC driver
Class.forName(“org.postgresql.Driver“);
// Create a connection to the database.
conn = DriverManager.getConnection( url usernamepassword );
// Turn off autocommit at each statement. We will manually commit.
// Set the transaction isolation level to serializable
//conn.setAutoCommit(false);
//conn.setTransactionIsolation(Connection.TRANSACTION_SERIALIZABLE);
// Create a statement object.
stmt = conn.createStatement();
System.out.println( “Welcome to the movie theater!“ );
// Query the titles currently playing.
String SQLQuery = “select distinct title from movie“;
rset = stmt.executeQuery( SQLQuery );
while( rset.next() )
{
movienames[rset.getRow()] = rset.getString( “title“ );
System.out.println( rset.getRow() + “: “ + rset.getString(“title“) );
}
// Ask the user what movie he wants to see.
System.out.print( “Enter the number of the movie you want to see:“ );
choice = Integer.parseInt(keyIn.readLine());
moviename = movienames[(choice)];
// Query the id for this movie.
sqlquery = new String( “select movie_id from movie where title=‘“ + moviename + “‘“ );
rset = stmt.executeQuery( sqlquery );
rset.next();
movie_id = rset.getInt( “movie_id“ );
// Query the available times for the chosen movie.
sqlquery = new String( “select distinct movie_time from showing where movie_id =“ + movie_id );
rset = stmt.executeQuery( sqlquery );
while( rset.next() ) {
movietimes[(rset.getRow())] = rset.getString( “movie_time“ );
System.out.println( rset.getRow() + “: “ + rset.getString( “movie_time“ ) );
}
// Ask the user what showing he wants to see.
System.out.println( “Enter the number of the time you want to see: “ );
choice = Integer.parseInt( keyIn.readLine() );
movietime = movietimes[(choice)];
// Ask the user how many seats he wants.
System.out.println( “Please enter the number of seats that you want to buy: “ );
numseats = Integer.parseInt( keyIn.readLine() );
//
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1065 2011-12-09 08:39 Ex 9\deadlock.txt
文件 1302 2011-12-09 08:05 Ex 9\isolation.txt
文件 4928 2011-12-09 09:39 Ex 9\MovieTransaction.java
文件 553 2011-12-10 22:39 Ex 9\rollback.txt
文件 15221 2011-12-09 09:04 Ex 9\Transactions at the ATM.docx
目录 0 2011-12-09 09:42 Ex 9
----------- --------- ---------- ----- ----
23069 6
- 上一篇:MIPS机器码翻译器(修正一)
- 下一篇:Flash兔子跳铃铛
相关资源
- Visio大全模具(含Cisco、IBM等常用拓扑
- 西门坡论坛pb框架 普通版 2.0 非常漂
- 基于STM32RCT6的步进电机驱动程序
- pthreads-w32-2-9-1-release.zip
- SpringBoot+H2+mybatis-plus59130
- ddos压力测试工具99657
- STC8951系列单片机中方指南
- 联想H61主板BIOS升级F9KT58AUS支持22NM.i
- 郭天祥ARM9视频教程
- IAR-Keygen-2019+附使用教程.zip
- CCSv9链接及安装流程详解
- 电脑卡西欧计算器 fx-991CN X Emulator19中
- Lenovo Z460 SLIC2.1 LENOVO-29CN38WW(V2.15)
- 联想G400G500G490BIOS
- Alcor(安国)SC908SNAU6989SN主控量产工具
- Origin9.0去水印补丁
- TCL-S1916 ,1924交换机管理程序
- 飞思卡尔单片机MC9S12XS12G128驱动(硬件
- CASS9.1最新S4数据及驱动+ET199数据及驱
- 嵌入式图形界面MiniGUI的示例程序9例
- 单片机和adc0809数字电压表
- 加密软件漏洞评测系统 V8.9
- 单片机、ADC0808809设计简易数字电压表
- WINDOWS98启动盘镜像Win98.IMA
- 通风网络解算程序 fortran90
- proteus仿真 AT89C51输出各种波形
- 直流稳压电源资料,78,79系列
- zen_cart_1.3.9h_ 配置文件优化
- msp430F149操作红外接收模块源码
- pb 实现ean8,ean13,ean39条形码数据窗口
评论
共有 条评论