2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient / OracleBFile.cs
index d67f0c172e036500cf274c51d522bee826f6450b..d252c2d8bbb02e1a0f05a782ed2ba3547a739725 100644 (file)
@@ -23,16 +23,20 @@ namespace System.Data.OracleClient {
        {
                #region Fields
 
-               public static readonly new OracleBFile Null; // FIXME
+               public static readonly new OracleBFile Null = new OracleBFile ();
 
                OracleConnection connection;
                bool isOpen = true;
-               internal bool isNull;
+               bool notNull = false;
 
                #endregion // Fields
 
                #region Constructors
 
+               internal OracleBFile ()
+               {
+               }
+
                #endregion // Constructors
 
                #region Properties
@@ -85,7 +89,7 @@ namespace System.Data.OracleClient {
                }
 
                public bool IsNull {
-                       get { return isNull; }
+                       get { return !notNull; }
                }
 
                public override long Length {