Oracle里面containskey,OracleConnectionStringBuilder

public:

override bool ContainsKey(System::String ^ keyword);

public override bool ContainsKey (string keyword);

override this.ContainsKey : string -> bool

Public Overrides Function ContainsKey (keyword As String) As Boolean

参数

返回

如果 OracleConnectionStringBuilder 包含具有指定键的元素,则为 true;否则为 false。true if the OracleConnectionStringBuilder contains an element that has the specified key; otherwise, false.

例外

keyword 为 Null(在 Visual Basic 中为 Nothing)keyword is null (Nothing in Visual Basic)

示例

下面的示例创建一个 OracleConnectionStringBuilder 实例,并设置其一些属性,然后尝试通过调用方法来确定对象中是否存在不同的键 ContainsKey 。The following example creates an OracleConnectionStringBuilder instance, sets some of its properties, and then tries to determine whether various keys exist within the object by calling the ContainsKey method.

// You may need to set a reference to the System.Data.OracleClient

// assembly before you can run this sample.

using System.Data.OracleClient;

class Program

{

static void Main()

{

OracleConnectionStringBuilder builder =

new OracleConnectionStringBuilder(GetConnectionString());

Console.WriteLine("Connection string = " + builder.ConnectionString);

// Keys you have provided return true.

Console.WriteLine(builder.ContainsKey("Integrated Security"));

// Comparison is case insensitive, and synonyms for the

// keywords are translated to well-known names.

// The following returns true because "PWD" is a

// synonym for "Password", a valid key.

Console.WriteLine(builder.ContainsKey("PWD"));

// Keys that are valid but have not been set return true.

Console.WriteLine(builder.ContainsKey("Unicode"));

// Keys that do not exist return false.

Console.WriteLine(builder.ContainsKey("MyKey"));

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

Console.ReadLine();

}

private static string GetConnectionString()

{

// To avoid storing the connection string in your code,

// you can retrieve it from a configuration file.

return "Server=OracleDemo;Integrated Security=True";

}

}' You may need to set a reference to the System.Data.OracleClient

' assembly before you can run this sample.

Imports System.Data.OracleClient

Module Module1

Sub Main()

Dim builder As _

New OracleConnectionStringBuilder(GetConnectionString())

Console.WriteLine("Connection string = " & builder.ConnectionString)

' Keys you have provided return true.

Console.WriteLine(builder.ContainsKey("Integrated Security"))

' Comparison is case insensitive, and synonyms for the

' keywords are translated to well-known names.

' The following returns True because "PWD" is a

' synonym for "Password", a valid key.

Console.WriteLine(builder.ContainsKey("PWD"))

' Keys that are valid but have not been set return true.

Console.WriteLine(builder.ContainsKey("Unicode"))

' Keys that don't exist return false.

Console.WriteLine(builder.ContainsKey("MyKey"))

Console.WriteLine("Press Enter to continue.")

Console.ReadLine()

End Sub

Private Function GetConnectionString() As String

' To avoid storing the connection string in your code,

' you can retrieve it from a configuration file.

Return "Server=OracleDemo;Integrated Security=True"

End Function

End Module

注解

Because the OracleConnectionStringBuilder contains a fixed-size collection of key/value pairs, the ContainsKey method determines only if a particular key name is valid.

适用于

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值