Método Close

Cierra la conexión a la base de datos.

Sintaxis

Object.Close()

Argumentos: Object: necesario. Siempre es el nombre del objeto ADODB Connection.

Observaciones

En el siguiente ejemplo se muestra el uso del método Close.

Ejemplo 1:

'Create ADODB.Connection Object
Dim ConnObj   ' Create a variable.
Set ConnObj = CreateObject("ADODB.Connection")
ConnObj.Open("ConnectionString") 'Creates DB Connection by Using Connection String
'Do all the operations by using ADODB Connection Object based on the requirement
ConnObj.Close()
Set ConnObj = Nothing