2002-08-15 Rodrigo Moya <rodrigo@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbParameterCollection.cs
index 5d566d83011b715124fa3578dfb6c45185744f03..8d09e465c16d2afb8ff5dd1fb5ee43308d6e5639 100644 (file)
@@ -67,16 +67,28 @@ namespace System.Data.OleDb
                        set { list[index] = value; }
                }
 
-               object IDataParameterCollection.this[string name] {
+               object IDataParameterCollection.this[string name]
+               {
                        [MonoTODO]
-                       get { throw new NotImplementedException (); }
+                       get {
+                               throw new NotImplementedException ();
+                       }
                        [MonoTODO]
-                       set { throw new NotImplementedException (); }
+                       set {
+                               throw new NotImplementedException ();
+                       }
                }
 
                internal IntPtr GdaParameterList {
                        [MonoTODO]
-                       get { throw new NotImplementedException (); }
+                       get {
+                               IntPtr param_list;
+
+                               param_list = libgda.gda_parameter_list_new ();
+                               // FIXME: add parameters to list
+                               
+                               return param_list;
+                       }
                }
 
                #endregion // Properties