OleDbConnection.ConnectionTimeout Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene el tiempo de espera (en segundos) al intentar establecer una conexión antes de finalizar el intento y generar un error.
public:
property int ConnectionTimeout { int get(); };
public:
virtual property int ConnectionTimeout { int get(); };
[System.Data.DataSysDescription("OleDbConnection_ConnectionTimeout")]
public int ConnectionTimeout { get; }
public override int ConnectionTimeout { get; }
[<System.Data.DataSysDescription("OleDbConnection_ConnectionTimeout")>]
member this.ConnectionTimeout : int
member this.ConnectionTimeout : int
Public ReadOnly Property ConnectionTimeout As Integer
Public Overrides ReadOnly Property ConnectionTimeout As Integer
Valor de propiedad
El tiempo en segundos para esperar a que se abra una conexión. El valor predeterminado es de 15 segundos.
Implementaciones
- Atributos
Excepciones
El valor establecido es menor que 0.
Ejemplos
En el ejemplo siguiente se crea y OleDbConnection se establecen algunas de sus propiedades en la cadena de conexión.
// 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.
}
}
' 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
Comentarios
Un valor de 0 indica que no hay límite y debe evitarse en porque ConnectionString un intento de conexión esperará indefinidamente.