[Cleanup] Removed TARGET_JVM
[mono-project.git] / mcs / class / System.Data.OracleClient / Test / System.Data.OracleClient.jvm / OracleTransaction / OracleTransaction_Rollback.cs
blobd0d5e93f00056a4086b60709fe1487e182c21aa7
1 //
2 // Copyright (c) 2006 Mainsoft Co.
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 using System;
25 using System.Data;
26 using System.Data.OracleClient;
28 using MonoTests.System.Data.Utils;
31 using NUnit.Framework;
33 namespace MonoTests.System.Data.OracleClient
35 [TestFixture]
36 [Category("NotWorking")]
37 public class OracleTransaction_Rollback : ADONetTesterClass
39 public static void Main()
41 OracleTransaction_Rollback tc = new OracleTransaction_Rollback();
42 Exception exp = null;
43 try
45 tc.BeginTest("OracleTransaction_Rollback");
46 tc.run();
48 catch(Exception ex){exp = ex;}
49 finally {tc.EndTest(exp);}
52 [Test]
53 public void run()
55 OracleConnection con = null;
56 OracleTransaction txn;
57 Exception exp = null;
58 try
60 BeginCase("OracleTransaction Rollback");
63 //prepare data
64 base.PrepareDataForTesting(MonoTests.System.Data.Utils.ConnectedDataProvider.ConnectionString);
66 string Result = "";
67 con = new OracleConnection(MonoTests.System.Data.Utils.ConnectedDataProvider.ConnectionString);
68 con.Open();
69 txn = con.BeginTransaction();
70 OracleCommand cmd = new OracleCommand("Update Employees Set LastName = 'StamLastName' Where EmployeeID = 100", con, txn);
71 cmd.ExecuteNonQuery();
72 txn.Rollback();
76 cmd = new OracleCommand("Select LastName From Employees Where EmployeeID = 100", con);
77 Result = cmd.ExecuteScalar().ToString();
78 Compare(Result,"Last100" );
79 this.Log(Result);
82 catch(Exception ex){exp = ex;}
83 finally{EndCase(exp); exp = null;}
85 if (con.State == ConnectionState.Open) con.Close();