SqlServices.InstallSessionState メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ASP.NET セッション状態のコンポーネントを SQL Server データベースにインストールします。
オーバーロード
InstallSessionState(String, String, SessionStateType) |
ASP.NET セッション状態のコンポーネントを SQL Server データベースにインストールします。 |
InstallSessionState(String, SessionStateType, String) |
ASP.NET セッション状態のコンポーネントを SQL Server データベースにインストールします。 |
InstallSessionState(String, String, String, String, SessionStateType) |
ASP.NET セッション状態のコンポーネントを SQL Server データベースにインストールします。 |
InstallSessionState(String, String, SessionStateType)
ASP.NET セッション状態のコンポーネントを SQL Server データベースにインストールします。
public:
static void InstallSessionState(System::String ^ server, System::String ^ customDatabase, System::Web::Management::SessionStateType type);
public static void InstallSessionState (string server, string customDatabase, System.Web.Management.SessionStateType type);
static member InstallSessionState : string * string * System.Web.Management.SessionStateType -> unit
Public Shared Sub InstallSessionState (server As String, customDatabase As String, type As SessionStateType)
パラメーター
- server
- String
セッション状態コンポーネントのインストール先 SQL Server インスタンス。
- customDatabase
- String
セッション状態コンポーネントのインストール先データベース。
- type
- SessionStateType
インストールするセッション状態の種類を指定する SessionStateType 値の 1 つ。
例外
種類が Custom
で customDatabase
値の指定がない場合、または種類が Temporary
か Persisted
のどちらかで customDatabase
値が null ではない場合があります。
指定したデータベース サーバーに接続できませんでした。
操作に必要な SQL ステートメントの処理中に例外が発生しました。
例
次のコード例は、 クラスの メソッドを使用する InstallSessionState 方法を SqlServices 示しています。
// Install temporary session state.
SqlServices.InstallSessionState(server, null,
SessionStateType.Temporary);
' Install temporary session state.
SqlServices.InstallSessionState(server, Nothing, _
SessionStateType.Temporary)
注釈
が null
指定されている場合、または指定されていない場合server
は、SqlServices既定の SQL Server インスタンスが使用されます。
注意
データベース サーバーへの接続は、信頼された接続を使用して行われます。
こちらもご覧ください
適用対象
InstallSessionState(String, SessionStateType, String)
ASP.NET セッション状態のコンポーネントを SQL Server データベースにインストールします。
public:
static void InstallSessionState(System::String ^ customDatabase, System::Web::Management::SessionStateType type, System::String ^ connectionString);
public static void InstallSessionState (string customDatabase, System.Web.Management.SessionStateType type, string connectionString);
static member InstallSessionState : string * System.Web.Management.SessionStateType * string -> unit
Public Shared Sub InstallSessionState (customDatabase As String, type As SessionStateType, connectionString As String)
パラメーター
- customDatabase
- String
セッション状態コンポーネントのインストール先データベース。
- type
- SessionStateType
インストールするセッション状態の種類を指定する SessionStateType 値の 1 つ。
- connectionString
- String
使用する接続文字列。 この接続文字列は、データベース サーバーとの接続の確立だけに使用されます。 接続文字列にデータベースを指定しても機能しません。
例外
種類が Custom
で customDatabase
値の指定がない場合、または種類が Temporary
か Persisted
のどちらかで customDatabase
値が null ではない場合があります。
指定したデータベース サーバーに接続できませんでした。
操作に必要な SQL ステートメントの処理中に例外が発生しました。
例
次のコード例は、 クラスの メソッドを使用する InstallSessionState(String, SessionStateType, String) 方法を SqlServices 示しています。
// Install a custom session state database.
SqlServices.InstallSessionState(database,
SessionStateType.Custom,
connectionString);
' Install a custom session state database.
SqlServices.InstallSessionState(database, _
SessionStateType.Custom, _
connectionString)
こちらもご覧ください
適用対象
InstallSessionState(String, String, String, String, SessionStateType)
ASP.NET セッション状態のコンポーネントを SQL Server データベースにインストールします。
public:
static void InstallSessionState(System::String ^ server, System::String ^ user, System::String ^ password, System::String ^ customDatabase, System::Web::Management::SessionStateType type);
public static void InstallSessionState (string server, string user, string password, string customDatabase, System.Web.Management.SessionStateType type);
static member InstallSessionState : string * string * string * string * System.Web.Management.SessionStateType -> unit
Public Shared Sub InstallSessionState (server As String, user As String, password As String, customDatabase As String, type As SessionStateType)
パラメーター
- server
- String
セッション状態コンポーネントのインストール先 SQL Server インスタンス。
- user
- String
データベースへの接続時に使用するユーザー名。
- password
- String
データベースへの接続時に使用するパスワード。
- customDatabase
- String
セッション状態コンポーネントのインストール先データベース。
- type
- SessionStateType
インストールするセッション状態の種類を指定する SessionStateType 値の 1 つ。
例外
種類が Custom
で customDatabase
値の指定がない場合、または種類が Temporary
か Persisted
のどちらかで customDatabase
値が null ではない場合があります。
指定したデータベース サーバーに接続できませんでした。
操作に必要な SQL ステートメントの処理中に例外が発生しました。
例
次のコード例は、 クラスの メソッドを使用する InstallSessionState(String, String, String, String, SessionStateType) 方法を SqlServices 示しています。
// Install persisted session state.
SqlServices.InstallSessionState(server, user, password,
null, SessionStateType.Persisted);
' Install persisted session state.
SqlServices.InstallSessionState(server, user, password, _
Nothing, SessionStateType.Persisted)
注釈
が null
指定されている場合、または指定されていない場合server
は、SqlServices既定の SQL Server インスタンスが使用されます。
注意
データベース サーバーへの接続は、信頼された接続を使用して行われます。
こちらもご覧ください
適用対象
.NET