# File lib/dbd_db2/DB2.rb, line 113
    def disconnect
      rollback
      rc = SQLDisconnect(@handle)
      error(rc, "Could not disconnect from Database")

      rc = SQLFreeHandle(SQL_HANDLE_DBC, @handle)
      error(rc, "Could not free Database handle")
    end