close method

void close()

Closes the dynamic library.

Implementation

void close() {
  if (lib != null) {
    // Unloading the fbclient dynamic library disabled on purpose
    // (see issue 17: https://github.com/hipercompl/fbdb/issues/17,
    // and also FirebirdSQL/firebird#2096 and #2589).
    lib = null;
  }
}