共用方式為


Insert 屬性

取得或設定 Boolean 屬性值,指定是否要在權限集合中包含 INSERT 權限。此權限可讓被授與者將資料加入至資料庫。

命名空間:  Microsoft.SqlServer.Management.Smo
組件:  Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)

語法

'宣告
Public Property Insert As Boolean
    Get
    Set
'用途
Dim instance As DatabasePermissionSet
Dim value As Boolean

value = instance.Insert

instance.Insert = value
public bool Insert { get; set; }
public:
property bool Insert {
    bool get ();
    void set (bool value);
}
member Insert : bool with get, set
function get Insert () : boolean
function set Insert (value : boolean)

屬性值

型別:System. . :: . .Boolean
Boolean 值,指定是否要在權限集合中包含 INSERT 權限。
如果為 True,則表示權限會包含在權限集合中。
如果為 False (預設值),則表示權限會排除在權限集合外。