次の方法で共有


SqlCeConnection Constructor ()

SqlCeConnection クラスの新しいインスタンスを初期化します。

名前空間: System.Data.SqlServerCe
アセンブリ: System.Data.SqlServerCe (system.data.sqlserverce.dll 内)

構文

'宣言
Public Sub New
public SqlCeConnection ()
public:
SqlCeConnection ()
public SqlCeConnection ()
public function SqlCeConnection ()

解説

SqlCeConnection の新しいインスタンスを作成すると、読み書き可能プロパティは、ConnectionString プロパティ内の対応するキーワードを使用して設定した場合を除いて、次の初期値に設定されます。

プロパティ

初期値

ConnectionString

空の文字列 ("")。

DataSource

空の文字列 ("")。

これらのプロパティの値を変更するには、ConnectionString プロパティを使用する必要があります。

SqlCeConnection を作成して開く例を次に示します。

Dim conn As New SqlCeConnection()

' Set some connection string properties e.g.:
' 
conn.ConnectionString = _
    "Persist Security Info = False; Data Source = 'SalesData.sdf';" & _
    "Password = '<password>'; File Mode = 'shared read'; " & _
    "Max Database Size = 256; Max Buffer Size = 1024"

conn.Open()

' You can change the database while preserving 
' the orignal connection options
'
conn.ChangeDatabase("SupportData.sdf")
SqlCeConnection conn = new SqlCeConnection();

// Set some connection string properties e.g.:
// 
conn.ConnectionString = 
    "Persist Security Info = False; Data Source = 'SalesData.sdf';" +
    "Password = '<password>'; File Mode = 'shared read'; " +
    "Max Database Size = 256; Max Buffer Size = 1024";

conn.Open();

// You can change the database while preserving 
// the orignal connection options
//
conn.ChangeDatabase("SupportData.sdf");

プラットフォーム

開発プラットフォーム

Windows Vista、Windows Mobile 5.0、Windows XP Professional with Service Pack 2 (SP2)、Windows Server 2003、Windows Mobile 2003 for Pocket PC、Windows CE 5.0
バージョン情報
.NET Framework および .NET Compact Framework
3.5 でサポート
.NET Framework
3.0 でサポート
.NET Compact Framework および .Net Framework
2.0 でサポート

参照

リファレンス

SqlCeConnection Class
SqlCeConnection Members
System.Data.SqlServerCe Namespace