OracleConnectionStringBuilder.Clear Method

Definition

Clears the contents of the OracleConnectionStringBuilder instance.

C#
public override void Clear();

Examples

The following example demonstrates the effect of calling the Clear method. This example populates the OracleConnectionStringBuilder with some key/value pairs, and then calls the Clear method and shows the results.

C#
// You may need to set a reference to the System.Data.OracleClient
// assembly before running this example.
using System.Data.OracleClient;

class Program
{
    static void Main()
    {
        OracleConnectionStringBuilder builder =
            new OracleConnectionStringBuilder();
        builder.DataSource = "OracleSample";
        builder.IntegratedSecurity = true;
        Console.WriteLine("Initial connection string: " +
            builder.ConnectionString);

        Console.WriteLine("Before call to Clear, count = " + builder.Count);
        builder.Clear();
        Console.WriteLine("After call to Clear, count = " + builder.Count);
        Console.WriteLine("Cleared connection string: " +
            builder.ConnectionString);
        Console.WriteLine();

        Console.WriteLine("Press Enter to continue.");
        Console.ReadLine();
    }
}

Remarks

The Clear method removes all key/value pairs from the OracleConnectionStringBuilder, and resets all corresponding properties. This includes resetting the connection string to an empty string.

Applies to

Produkt Versioner
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also