[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / System.Data.OracleClient / ChangeLog
index 5288399880a983c6f09561ce07064c6eb68c8a90..473e7fe394c7a4b88ce7042d2d8126057880e355 100644 (file)
@@ -1,3 +1,110 @@
+2009-11-25  Daniel Morgan  <monodanmorg@yahoo.com>
+
+       * System.Data.OracleClient/OracleParameter.cs: add
+       parameter support for LONG RAW and RAW data types
+
+       * System.Data.OracleClient.Oci/OciDefineHandle.cs: flush
+       extra assigning of types
+
+2009-11-21  Daniel Morgan  <monodanmorg@yahoo.com>
+
+       * System.Data.OracleClient/OracleParameter.cs: clean up
+
+2009-11-21  Daniel Morgan  <monodanmorg@yahoo.com>
+
+       * System.Data.OracleClient/OracleParameter.cs:
+               - if programmer explicitly sets the Size property,
+               do not override the size later if the Value property
+               is set for character data.
+               - for character and numeric data types, output and 
+               return parameters were not allocated memory.  Also,
+               input/output parameters need to allocate memory 
+               based on Size because the output can be bigger than
+               the input after an execute.
+
+       * Test/TestOracleClient.cs: Data Adapter Test 2 is failing 
+       for NET_2_0 profile.
+
+2009-11-19  Daniel Morgan  <monodanmorg@yahoo.com>
+
+       * System.Data.OracleClient/OracleConnection.cs
+       * System.Data.OracleClient/OciGlue.cs
+       * System.Data.OracleClient.Oci/OciCalls.cs
+       * System.Data.OracleClient.Oci/OciServiceHandle.cs
+       * System.Data.OracleClient.Oci/OciSessionHandle.cs: add method
+               OpenWithNewPassword to OracleConnection for
+               Oracle.DataAccess
+
+2009-03-29  Veerapuram Varadhan  <vvaradhan@novell.com>
+
+       * System.Data.OracleClient.dll.sources: Add new file
+       
+2008-09-24  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * Test/testblob.cs
+       * Test/TestOracleClient.cs: update tests for parameter type of blob
+
+       * System.Data.OracleClient/OracleLob.cs: position was never
+       being reset to the offset causing the reading of a Blob to
+       be out of range
+
+       * System.Data.OracleClient/OracleParameter.cs: fixes for 
+       character and blob types
+
+2008-09-16  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * System.Data.OracleClient/OracleBFile.cs: do not
+       throw a NotImplementedException in internal constructor
+
+2008-09-16  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * Test/TestOracleClient.cs: add tests
+       for TIMESTAMP Input, Output, InputOutput, Return 
+       parameters and handle DBNull.Value too
+
+       * System.Data.OracleClient/OracleCommandBuilder.cs
+       * System.Data.OracleClient/OracleDataAdapter.cs: cleanup warnings
+       for default profile
+
+       * System.Data.OracleClient.Oci/OciDateTimeDescriptor.cs
+       * System.Data.OracleClient/OracleParameter.cs: fix parameters
+       for TIMESTAMP Input, Output, InputOutput, Return
+       parameters and handle DBNUll.Value via indicator = -1
+       However, TIMESTAMP WITH TIMEZONE and TIMESTAMP WITH LOCAL TIMESTAMP
+       not tested.
+
+2008-09-14  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * System.Data.OracleClient/OracleParameter.cs: fixes
+       for OracleType.Blob parameters.  Also some case statements
+       not properly tabbed.
+
+2008-09-14  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * Test/TestOracleClient.cs: add tests for parameters
+       of oracle type CLOB, add tests for setting oracle type
+       directly or inferred via the value, and 
+       clean up compile warnings
+
+       * System.Data.OracleClient/OracleParameter.cs: fix
+       for handling parameters of oracle type CLOB for
+       Input, Output, and Return.  InputOutput is not supported.
+       And handle CLOB parameters that are DBNull.Value or
+       their value length is zero.
+
+2008-09-13  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * System.Data.OracleClient/OracleConnection.cs: add stubs
+       for method GetSchema which is part of NET_2_0, and clean up warnings
+
+       * System.Data.OracleClient/OracleCommand.cs
+       * ystem.Data.OracleClient/OracleParameter.cs
+       * System.Data.OracleClient/OracleBFile.cs
+       * System.Data.OracleClient.Oci/OciHandle.cs: clean up warnings
+
+       * System.Data.OracleClient.Oci/OciDescriptorHandle.cs
+       * System.Data.OracleClient.Oci/OciDefineHandle.cs: make methods internal
+
 2008-09-13  Daniel Morgan <monodanmorg@yahoo.com>
 
        * Test/TestOracleClient.cs: add test for LONG (long varchar)