DbConnectionStringBuilder.Remove Method
.NET Framework 4
Removes the entry with the specified key from the DbConnectionStringBuilder instance.
Assembly: System.Data (in System.Data.dll)
Parameters
- keyword
- Type: System.String
The key of the key/value pair to be removed from the connection string in this DbConnectionStringBuilder.
Return Value
Type: System.Booleantrue if the key existed within the connection string and was removed; false if the key did not exist.
| Exception | Condition |
|---|---|
| ArgumentNullException |
keyword is null (Nothing in Visual Basic) |
| NotSupportedException |
The DbConnectionStringBuilder is read-only, or the DbConnectionStringBuilder has a fixed size. |
Because the Remove method returns a value that indicates its success, it is not required to look for the key before trying to remove the key/value pair from the DbConnectionStringBuilder instance.
static void Main() { DbConnectionStringBuilder builder = new DbConnectionStringBuilder(); builder.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Demo.mdb;" + "Jet OLEDB:System Database=system.mdw;"; // Try to remove an existing item. TryRemove(builder, "Provider"); // Try to remove a nonexistent item. TryRemove(builder, "User ID"); // Try to remove an existing item, // demonstrating that the search isn't // case sensitive. TryRemove(builder, "DATA SOURCE"); Console.ReadLine(); } static void TryRemove(DbConnectionStringBuilder builder, string itemToRemove) { if (builder.Remove(itemToRemove)) { Console.WriteLine(@"Removed '{0}'", itemToRemove); } else { Console.WriteLine(@"Unable to remove '{0}'", itemToRemove); } Console.WriteLine(builder.ConnectionString); }
This sample displays the following output:
Removed 'Provider' data source=C:\Demo.mdb;jet oledb:system database=system.mdw Unable to remove 'User ID' data source=C:\Demo.mdb;jet oledb:system database=system.mdw Removed 'DATA SOURCE' jet oledb:system database=system.mdw
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.