OleDbConnection.ConnectionTimeout-Eigenschaft
Ruft die Zeit ab, die beim Verbindungsaufbau gewartet werden soll, bis der Versuch beendet und ein Fehler generiert wird.
Namespace: System.Data.OleDb
Assembly: System.Data (in system.data.dll)
Syntax
'Declaration
Public Overrides ReadOnly Property ConnectionTimeout As Integer
'Usage
Dim instance As OleDbConnection
Dim value As Integer
value = instance.ConnectionTimeout
public override int ConnectionTimeout { get; }
public:
virtual property int ConnectionTimeout {
int get () override;
}
/** @property */
public int get_ConnectionTimeout ()
public override function get ConnectionTimeout () : int
Eigenschaftenwert
Die Zeit in Sekunden, die auf das Öffnen einer Verbindung gewartet werden soll. Der Standardwert ist 15 Sekunden.
Ausnahmen
Ausnahmetyp | Bedingung |
---|---|
Der festgelegte Wert ist kleiner als 0. |
Hinweise
Der Wert 0 (null) gibt keine Begrenzung an und sollte in einem ConnectionString vermieden werden, da andernfalls für unbegrenzte Zeit auf das Herstellen einer Verbindung gewartet wird.
Beispiel
Im folgenden Beispiel wird eine OleDbConnection erstellt, und einige ihrer Eigenschaften in der Verbindungszeichenfolge werden festgelegt.
' The connectionString argument contains the Connect Timeout
' keywords, as follows: "... ;Connect Timeout=30;"
Public Sub InsertRow(ByVal connectionString As String, _
ByVal insertSQL As String)
Using connection As New OleDbConnection(connectionString)
' The insertSQL string contains a SQL statement that
' inserts a new row in the source table.
Dim command As New OleDbCommand(insertSQL)
' Set the Connection to the new OleDbConnection.
command.Connection = connection
' Open the connection and execute the insert command.
Try
connection.Open()
command.ExecuteNonQuery()
Catch ex As Exception
Console.WriteLine(ex.Message)
End Try
' The connection is automatically closed when the
' code exits the Using block.
End Using
End Sub
// The connectionString argument contains the Connect Timeout
// keywords, as follows: "... ;Connect Timeout=30;"
public void InsertRow(string connectionString, string insertSQL)
{
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
// The insertSQL string contains a SQL statement that
// inserts a new row in the source table.
OleDbCommand command = new OleDbCommand(insertSQL);
// Set the Connection to the new OleDbConnection.
command.Connection = connection;
// Open the connection and execute the insert command.
try
{
connection.Open();
command.ExecuteNonQuery();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
// The connection is automatically closed when the
// code exits the using block.
}
using System;
using System.Data;
using System.Data.OleDb;
class Class1
{
static void Main()
{
}
// The connectionString argument contains the Connect Timeout
// keywords, as follows: "... ;Connect Timeout=30;"
public void InsertRow(string connectionString, string insertSQL)
{
using (OleDbConnection connection = new OleDbConnection(connectionString))
{
// The insertSQL string contains a SQL statement that
// inserts a new row in the source table.
OleDbCommand command = new OleDbCommand(insertSQL);
// Set the Connection to the new OleDbConnection.
command.Connection = connection;
// Open the connection and execute the insert command.
try
{
connection.Open();
command.ExecuteNonQuery();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
// The connection is automatically closed when the
// code exits the using block.
}
Plattformen
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
OleDbConnection-Klasse
OleDbConnection-Member
System.Data.OleDb-Namespace
Database
DataSource