|
|
|
|
HCloseConnection (Function) In french: HFermeConnexion
Not available with this kind of connection
Closes a connection to a database. All data files using this connection are closed.
// Describe and open the new connection HDescribeConnection("MyConnection", "", "", "Server_SQLServer", ... "dbo", hODBC, hOReadWrite, "") HOpenConnection("MyConnection") // Specify that "Salaries" uses the new connection HChangeConnection("Salaries", "MyConnection") // Start looping through the "Salaries" table on SQLServer HReadFirst("Salaries") ... // Close the connection HCloseConnection("MyConnection")
Syntax
<Result> = HCloseConnection(<Connection>)
<Result>: Boolean - True if the operation was performed,
- False if a problem occurs. HErrorInfo is used to identify the error.
<Connection>: Character string or Connection variable Connection to a database. This connection corresponds to: Remarks The description of the connection must be known whenHCloseConnection is executed.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|