2008-09-13 Daniel Morgan <monodanmorg@yahoo.com>
[mono.git] / mcs / class / System.Data.OracleClient / ChangeLog
index 46c2600e65dd7174f709ef7a82683a49a8ea296e..2b06d5b273b4fb5c7f277b303f04d734d1ae35e1 100644 (file)
@@ -1,3 +1,125 @@
+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)
+       testing paramters for Input, Output, 
+       InputOutput, and ReturnValue and
+       situations when any of these could be DBNull.Value
+
+       * System.Data.OracleClient/OracleParameter.cs: fix
+       handling of parameters LONG (long varchar).  However,
+       it probably would be better to implement LONG using
+       piecewise operation.  Also, remove old code.
+
+2008-09-10  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * Test/TestOracleClient.cs: fix typo,
+         enable more test,
+          Tests pass for parameters for Character, Number, and Date
+         for Input, Output, InputOutput, and ReturnValue and
+         situations when any of these could be DBNull.Value
+
+       * System.Data.OracleClient/OracleParameter.cs: fix
+       handling of parameters for character, number, and date
+       types.  Need to redo all the other types based on the above.
+
+       * System.Data.OracleClient.Oci/OciDefineHandle.cs: rename private
+       method DefineLong to DefineLongVarChar
+
+2008-09-06  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * Test/TestOracleClient.cs: get oracle connected tests
+       going again
+       
+       *  System.Data.OracleClient.Oci/OciDefineHandle.cs
+       * System.Data.OracleClient/OracleDataReader.cs
+       * System.Data.OracleClient/OracleCommand.cs: fix character
+       field value for a reader that was retrieved from a REF CURSOR.
+       It was failing due to OCI_INVALID_HANDLE - resolve the error
+       by passing a connection object which has a valid environment
+       handle.
+
+       * System.Data.OracleClient.Oci/OciCalls.cs: correct 
+       call to OCIDefineByPos
+
+       * System.Data.OracleClient/OracleParameter.cs: better way to
+       determine if the input value Is Null instead of using reflection.
+       Flush - Re-arraning how variables are being bound.
+
+       * System.Data.OracleClient/OciGlue.cs: add function
+       to convert OCI Return / Error Status Code to a String Description
+       * System.Data.OracleClient.Oci/OciErrorHandle.cs: better
+       error handling
+
+2008-09-04  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * System.Data.OracleClient/OracleDataReader.cs: return true
+       in NextResult if another result 
+
+2008-09-04  Daniel Morgan <monodanmorg@yahoo.com>
+       
+       * System.Data.OracleClient/OracleCommand.cs: removed AssertNoDataReader
+       because oracle allows multiple result sets and has since .NET 1.0,
+       fix bug where REF CURSOR would not work for ExecuteReader or
+       filling a DataSet via an OracleDataAdapter.  The REF CURSOR is used to
+       populate the DataSet.
+
+       * System.Data.OracleClient/OracleDataReader.cs: fix for getting
+       next result set; implement NET_2_0 methods 
+       GetProviderSpecificFieldType,
+       GetProviderSpecificValuee, 
+       GetProviderSpecificValue; and validate the reader is open
+       before allowing a Read or NextResult, otherwise, throw
+       an InvalidOperationException
+
+       * System.Data.OracleClient/OracleParameter.cs: fix for
+       getting one or more REF CURSOR out parameters if
+       ExecuteReader was called. 
+
+       * System.Data.OracleClient.Oci/OciErrorHandle.cs
+       * System.Data.OracleClient.Oci/OciHandle.cs: add addiional method
+       for getting error, such as, INVALID_HANDLE being passed to OCI
+
+2008-08-27  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * System.Data.OracleClient/OracleConnectionStringBuilder.cs: modified -
+       add missing connection options, correct case of some connection options,
+       added dictionary for mapping
+       defaults, for Item this indexer needs to return a default
+       for a valid keyword if it does not exist in the dictionary,
+       must override the Keys and Values collection to return all keys
+       and values whether or not they exist in the dictionary and if
+       they do not then return a default value for Values
+
+2008-08-26  Daniel Morgan <monodanmorg@yahoo.com>
+
+       * System.Data.OracleClient/OracleParameter.cs
+       * System.Data.OracleClient.Oci/OciStatementHandle.cs
+       * System.Data.OracleClient.Oci/OciDefineHandle.cs: fix bug
+       for GetOracleLob in OracleDataReader that was created
+       via a REF CURSOR.  Bug occurred because the cursor when created
+       did not have a ServiceContext - this was solved by passing
+       the connection in which did.  Fixes bug#350408.  In OracleParameter, also
+       show the data type that is not implemented.
+
+       * Test/testblob.cs
+       * Test/TestOracleClient.cs: updated tests
+
+       * Test/refcursortest.cs: added ref cursor test with blob
+
 2008-08-25  Daniel Morgan <monodanmorg@yahoo.com>
 
        * System.Data.OracleClient/OracleCommand.cs