JAVA操作Oracle数据库中的事务

实验1:

1
2
3
4
create table yggz(code int, salary number(7,2));
insert into yggz values(1, 1000);
insert into yggz values(2, 150);
commit;

 完成任务:

如果1号员工的salary多余300元,则从1号员工的salary中减少300元,同时加到2号员工的salary上。

 

实验2:

1
2
3
4
create table yggz(code int, salary number(7,2));
insert into yggz values(1, 1000);
insert into yggz values(2, 150);
commit;

 完成任务:

如果1号员工的salary 多余300元,则从1号员工的salary中减少300元,同时加到2号员工的salary上,但是还要确保转账后1号员工的salary多于转账后的2号员工的salary。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package com.oaj;
 
import java.sql.*;
 
public class TestJdbcOdbc {
 
    String driver="oracle.jdbc.driver.OracleDriver";
    String strUrl="jdbc:oracle:thin:@localhost:1521:orcl";
    Statement stmt=null;
    ResultSet rs=null;
    Connection conn=null;
    CallableStatement cstmt=null;
    float salary=0;
    float salary2=0;
    String sqlStr=null;
        PreparedStatement ps=null;
    public static void main(String[] args)
    {
        new TestJdbcOdbc().test2();
    }
    public void test1()
    {
        try
        {
            Class.forName(driver);
            conn=DriverManager.getConnection(strUrl,"scott","scott");
            conn.setAutoCommit(false);
             //得到1号与昂工的工资
            sqlStr="select salary from yggz where code=1";
            ps=conn.prepareStatement(sqlStr);
            rs=ps.executeQuery();
            while(rs.next())
            {
                salary=rs.getFloat(1);
            }
            if(salary<300)
            {
                throw new RuntimeException("小于300元,不能转账");
            }
            sqlStr="update yggz set salary=salary-300 where code=1";
            ps=conn.prepareStatement(sqlStr);
            ps.executeUpdate(sqlStr);
             
            sqlStr="update yggz set salary=salary+300 where code=2";
            ps=conn.prepareStatement(sqlStr);
            ps.executeUpdate();
             
            conn.commit();
            System.out.println("---成功!");
             
  
             
        }
        catch(SQLException ex)
        {
            if(conn!=null)
            {
                try
                {
                    conn.rollback();
                    System.out.println("失败");
                     
                }
                catch(Exception ex2)
                {
                    ex2.printStackTrace();
                }
                 
            }
        }
        catch(Exception ex)
        {
            ex.printStackTrace();
        }
        finally
        {
            try
            {
                if(rs!=null)
                {
                    rs.close();
                      
                }
                if(ps!=null)
                {
                    ps.close();
                }
                if(conn!=null)
                {
                    conn.close();
                    conn=null;
                }
            }
            catch(SQLException ex)
            {
                ex.printStackTrace();
            }
        }
    }
    public void test2()
    {
        try
        {
            Class.forName(driver);
            conn=DriverManager.getConnection(strUrl,"scott","scott");
            conn.setAutoCommit(false);
             //得到1号与昂工的工资
            sqlStr="select salary from yggz where code=1";
            ps=conn.prepareStatement(sqlStr);
            rs=ps.executeQuery();
            while(rs.next())
            {
                salary=rs.getFloat(1);
            }
            if(salary<300)
            {
                throw new RuntimeException("小于300元,不能转账");
            }
            //设置一个保存点
            Savepoint point1=conn.setSavepoint("Point1");
             
            sqlStr="update yggz set salary=salary-300 where code=1";
            ps=conn.prepareStatement(sqlStr);
            ps.executeUpdate(sqlStr);
             
            sqlStr="update yggz set salary=salary+300 where code=2";
            ps=conn.prepareStatement(sqlStr);
            ps.executeUpdate();
             
            //再次取一号员工工资和二号员工的工资
            sqlStr="select salary from yggz where code=1";
            ps=conn.prepareStatement(sqlStr);
            rs=ps.executeQuery();
            while(rs.next())
            {
                salary=rs.getFloat(1);
            }
             
            sqlStr="select salary from yggz where code=2";
            ps=conn.prepareStatement(sqlStr);
            rs=ps.executeQuery();
            while(rs.next())
            {
                salary2=rs.getFloat(1);
            }
             
            if(!(salary>salary2))
            {
                conn.rollback(point1);
                System.out.println("转账失败!");
            }
            else
            {
                conn.commit();
                System.out.println("---成功!");
            }
             
             
            conn.commit();
             
             
  
             
        }
        catch(SQLException ex)
        {
            if(conn!=null)
            {
                try
                {
                    conn.rollback();
                    System.out.println("失败");
                     
                }
                catch(Exception ex2)
                {
                    ex2.printStackTrace();
                }
                 
            }
        }
        catch(Exception ex)
        {
            ex.printStackTrace();
        }
        finally
        {
            try
            {
                if(rs!=null)
                {
                    rs.close();
                      
                }
                if(ps!=null)
                {
                    ps.close();
                }
                if(conn!=null)
                {
                    conn.close();
                    conn=null;
                }
            }
            catch(SQLException ex)
            {
                ex.printStackTrace();
            }
        }
    }
}

 

 

 

 

 

 

JAVA操作Oracle数据库中的事务,布布扣,bubuko.com

JAVA操作Oracle数据库中的事务

上一篇:几种必知的oracle结构图


下一篇:ubuntu安装谷歌浏览器