Attached is a small patch for class\Mono.Data.Tds\Mono.Data.Tds.Protocol
This is the error I fixed (using csc):
D:\mono_cvs\mcs\class\Mono.Data.Tds\Mono.Data.Tds.Protocol\Tds70.cs(48,30): error CS0122: 'Mono.Data.Tds.Protocol.Tds.parameters' is inaccessible due to its protection level
Best regards,
Jeroen Janssen
*** Tds70.cs 10 Dec 2002 18:08:08 -0000 1.16
--- Tds70.cs 10 Dec 2002 19:45:59 -0000
@@ -45,7 +45,7 @@
private string BuildParameters ()
{
- if (Parameters == null || parameters.Count == 0)
+ if (Parameters == null || Parameters.Count == 0)
return String.Empty;
StringBuilder result = new StringBuilder ();