Product Documentation

FairCom SQL for PHP PDO

Previous Topic

Next Topic

Done

When an application and/or process has completed operations with the database, it must release resources by closing the open files and disconnecting from the database engine.

Below is the code for Done():

//

// Done()

//

// This function handles the housekeeping of closing, freeing,

// disconnecting and logging out of the database

//

function Done ($ses) {

print("\t<h4>DONE</h4>\n");

Delete_Tables($ses);

// logout

print("\t\tLogout...<br>\n");

$ses = null;

}

TOCIndex