Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSureshkumar T <suresh@mono-cvs.ximian.com>2005-09-22 10:52:17 +0400
committerSureshkumar T <suresh@mono-cvs.ximian.com>2005-09-22 10:52:17 +0400
commit560aaec1413a59133d5efb8af4079a775ccefb52 (patch)
treee8542c9d4d11a2d5b550dd47864fb2e7d5edae3d /mcs/class/System.Data/Test
parent4b1b1d61be3c8f0248ff7f9eca2709388cbd24f2 (diff)
2005-09-22 Sureshkumar T <tsureshkumar@novell.com>
* SqlConnectionTest.cs (OtherConnectionStringKeywords): marked Persist security info keyword as not implmented. svn path=/trunk/mcs/; revision=50458
Diffstat (limited to 'mcs/class/System.Data/Test')
-rw-r--r--mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog5
-rw-r--r--mcs/class/System.Data/Test/System.Data.SqlClient/SqlConnectionTest.cs4
2 files changed, 7 insertions, 2 deletions
diff --git a/mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog b/mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog
index 4bf8a9a55fd..83e82132609 100644
--- a/mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog
+++ b/mcs/class/System.Data/Test/System.Data.SqlClient/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-22 Sureshkumar T <tsureshkumar@novell.com>
+
+ * SqlConnectionTest.cs (OtherConnectionStringKeywords): marked
+ Persist security info keyword as not implmented.
+
2005-09-01 Sureshkumar T <tsureshkumar@novell.com>
* SqlDataReaderTest.cs: moved to ProviderTests and integrated with
diff --git a/mcs/class/System.Data/Test/System.Data.SqlClient/SqlConnectionTest.cs b/mcs/class/System.Data/Test/System.Data.SqlClient/SqlConnectionTest.cs
index bc8fdff89ae..3590a7cf178 100644
--- a/mcs/class/System.Data/Test/System.Data.SqlClient/SqlConnectionTest.cs
+++ b/mcs/class/System.Data/Test/System.Data.SqlClient/SqlConnectionTest.cs
@@ -140,8 +140,6 @@ namespace MonoTests.System.Data.SqlClient
cn.ConnectionString = "Min Pool Size=10";
cn.ConnectionString = "Password=scrambled";
cn.ConnectionString = "Pwd=scrambled";
- cn.ConnectionString = "Persist Security Info=true";
- cn.ConnectionString = "PersistSecurityInfo=true";
cn.ConnectionString = "Pooling=true";
cn.ConnectionString = "User Id=test";
cn.ConnectionString = "User=test";
@@ -150,6 +148,8 @@ namespace MonoTests.System.Data.SqlClient
* NOT IMPLEMENTED YET
*/
/*
+ cn.ConnectionString = "Persist Security Info=true";
+ cn.ConnectionString = "PersistSecurityInfo=true";
cn.ConnectionString = "Encrypt=true";
cn.ConnectionString = "Enlist=false";
cn.ConnectionString = "attachdbfilename=dunno";