• 大小: 719KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-11
  • 语言: 其他
  • 标签: SSD7  答案  quiz  excercise  

资源简介

ssd7 答案全 quiz + excercise + exam 1 2 3 4 5 6 7 8 9 10

资源截图

代码片段和文件信息

import java.util.*;
import java.io.*;
import java.text.*;
import java.sql.*;

/**
 * A class representing the driver program to the
 * SSD7 transaction exercise.
 *
 * @author CTE
 * @version 1.0
 */

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:movie“;
String username = “vince“;
String password = ““;
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 );

// Create a statement object.
stmt = conn.createStatement();

// Begin a new chained transaction.
stmt.executeUpdate( “Begin Work“ );

// Set the transaction isolation level to serializable
stmt.executeUpdate( “set transaction isolation level serializable“ );

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      18994  2008-05-29 09:58  ssd7-ex10-65\indexes.txt

     目录          0  2008-07-16 18:59  ssd7-ex10-65

----------- ---------  ---------- -----  ----

                18994                    2


评论

共有 条评论