oracle点上nullable,OracleParameter

获取或设置一个值,该值指示参数是否接受 null 值。Gets or sets a value that indicates whether the parameter accepts null values.

public:

property bool IsNullable { bool get(); void set(bool value); };

public:

virtual property bool IsNullable { bool get(); void set(bool value); };

[System.ComponentModel.Browsable(false)]

public bool IsNullable { get; set; }

public override bool IsNullable { get; set; }

[]

member this.IsNullable : bool with get, set

member this.IsNullable : bool with get, set

Public Property IsNullable As Boolean

Public Overrides Property IsNullable As Boolean

属性值

如果接受 null 值,则为 true;否则为 false。true if null values are accepted, otherwise false. 默认值为 false。The default is false.

示例

下面的示例创建 OracleParameter 并设置其一些属性。The following example creates a OracleParameter and sets some of its properties.

Public Sub CreateOracleParameter()

Dim parameter As New OracleParameter("DName", OracleType.VarChar, 14)

parameter.IsNullable = True

parameter.Direction = ParameterDirection.Output

End Sub

public void CreateOracleParameter()

{

OracleParameter parameter = new OracleParameter("DName", OracleType.VarChar, 14);

parameter.IsNullable = true;

parameter.Direction = ParameterDirection.Output;

}

注解

使用类处理 Null 值 DBNull 。Null values are handled using the DBNull class.

适用于

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值