ASPチュートリアル

ASPホーム

WPチュートリアル

Webページの紹介 WebPages Razor Webページのレイアウト Webページフォルダ WebPages Global Webページフォーム Webページオブジェクト Webページファイル Webページデータベース Webページヘルパー WebPages WebGrid Webページチャート Webページの電子メール Webページのセキュリティ Webページの公開 Webページの例 Webページクラス

ASP.NET Razor

かみそりのイントロ かみそりの構文 Razor C#変数 Razor C#ループ Razor C#ロジック RazorVB変数 かみそりVBループ RazorVBロジック

ASPクラシック

ASPイントロ ASP構文 ASP変数 ASP手順 ASP条件文 ASPループ ASPフォーム ASPCookie ASPセッション ASPアプリケーション ASP #include ASP Global.asa ASP AJAX ASPメール ASPの例

ASPリファレンス

ASPVB関数 ASPVBキーワード ASP応答 ASPリクエスト ASPアプリケーション ASPセッション ASPサーバー ASPエラー ASPファイルシステム ASP TextStream ASPドライブ ASPファイル ASPフォルダー ASP辞書 ASP AdRotator ASP BrowserCap ASPコンテンツリンク ASPコンテンツローテーター ASPクイック参照

ADOチュートリアル

ADOイントロ ADOコネクト ADOレコードセット ADOディスプレイ ADOクエリ ADOソート ADO追加 ADOアップデート ADO削除 ADO Demo ADOスピードアップ

ADOオブジェクト

ADOコマンド ADO接続 ADOエラー ADOフィールド ADOパラメータ ADOプロパティ ADOレコード ADOレコードセット ADOストリーム ADOデータ型

ADOオープンメソッド


❮完全な接続オブジェクトリファレンス

Openメソッドは、データソースへの接続を開きます。接続が開いているときは、データソースに対してコマンドを実行できます。

構文

connection.Open connectionstring,userID,password,options

Parameter Description
connectionstring Optional. A string value that contains information about the connection. The string is composed of a series of parameter=value statements separated by semicolons.

Provider= the name of the provider
File Name= the file that contains the connection information
Remote Provider= the name of the provider to open a client-side connection
Remote Server= the path name to the server to open a client-side connection
URL= the absolute URL address to use for the connection. 

See the ConnectionString property for details.

userID Optional. A String value that contains a user name for the connection
password Optional. A String value that contains a password for the connection
options Optional. A ConnectOptionEnum value that determines whether this method should return after or before the connection is established.

A DSN-less connection:

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/webdata/northwind.mdb"
%>

A DSN-less connection with userID and password
(write the conn.open statement in ONE line):

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;
data source=c:/webdata/northwind.mdb;
userID=xxx;
password=yyy"
%>

An ODBC Database Connection:

<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Open "northwind"
%>

ConnectOptionEnum

Constant Value Description
adConnectUnspecified -1 Default. Opens the connection synchronously (after).
adAsyncConnect 16 Opens the connection asynchronously (before).

❮完全な接続オブジェクトリファレンス