odbc_close

(PHP 4, PHP 5, PHP 7, PHP 8)

odbc_closeClose an ODBC connection

Descrição

odbc_close(resource$odbc): void

Closes down the connection to the database server.

Parâmetros

odbc

O identificador da conexão ODBC. Consulte odbc_connect() para obter detalhes.

Valor Retornado

Nenhum valor é retornado.

Notas

Nota:

This function will fail if there are open transactions on this connection. The connection will remain open in this case.

To Top