共用方式為


OracleParameter.IsNullable 屬性

定義

取得或設定值,這個值指出該參數是否接受 null 值。

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; }
[<System.ComponentModel.Browsable(false)>]
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。 預設為 false

屬性

範例

下列範例會建立 , OracleParameter 並設定其部分屬性。

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 類別來處理。

適用於