言語

User.Create メソッド

定義

オーバーロード

名前 説明
Create()

SQL Serverのインスタンスにデータベース ユーザーを作成します。

Create(SecureString)

SQL Serverのインスタンスにパスワードを使用してデータベース ユーザーを作成します。

Create(String)

SQL Serverのインスタンスにパスワードを使用してデータベース ユーザーを作成します。

Create()

SQL Serverのインスタンスにデータベース ユーザーを作成します。

public void Create();
abstract member Create : unit -> unit
override this.Create : unit -> unit
Public Sub Create ()

実装

適用対象

Create(SecureString)

SQL Serverのインスタンスにパスワードを使用してデータベース ユーザーを作成します。

public void Create(System.Security.SecureString password);
member this.Create : System.Security.SecureString -> unit
Public Sub Create (password As SecureString)

パラメーター

password
SecureString

パスワード。

適用対象

Create(String)

SQL Serverのインスタンスにパスワードを使用してデータベース ユーザーを作成します。

public void Create(string password);
member this.Create : string -> unit
Public Sub Create (password As String)

パラメーター

password
String

パスワード。

適用対象