company logo

dbhandle - Database handle

When the data source handle has been opened successfully, this handle refers to the opened database. The handle can be checked by calling database.isValid().

bool CheckDatabase( DataSource &ds ) {

  return ( ds.database.IsValid() ? OK : FAIL )        

}