import org.mxchange.addressbook.manager.contact.AddressbookContactManager;
import org.mxchange.jcore.contact.Contact;
import org.mxchange.jcore.contact.Gender;
+import org.mxchange.jcore.criteria.searchable.SearchCriteria;
+import org.mxchange.jcore.criteria.searchable.SearchableCritera;
import org.mxchange.jcore.database.frontend.BaseDatabaseFrontend;
+import org.mxchange.jcore.database.result.Result;
import org.mxchange.jcore.database.storage.Storeable;
import org.mxchange.jcore.exceptions.BadTokenException;
import org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException;
/**
* Basic constrcutor
+ * @throws org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException If the database backend is not supported
+ * @throws java.sql.SQLException Any SQL exception from e.g. MySQL connector
*/
- protected AddressbookContactDatabaseFrontend () {
+ protected AddressbookContactDatabaseFrontend () throws UnsupportedDatabaseBackendException, SQLException {
// Trace message
this.getLogger().trace("CALLED!"); //NOI18N
// Set "table" name
this.setTableName("contacts"); //NOI18N
- try {
- // Initalize backend
- this.initBackend();
- } catch (final UnsupportedDatabaseBackendException | SQLException ex) {
- // Abort program
- this.abortProgramWithException(ex);
- }
+ // Initalize backend
+ this.initBackend();
}
/**
*/
@Override
public boolean isOwnContactFound () throws SQLException {
+ // Get search criteria instance
+ SearchableCritera critera = new SearchCriteria();
+
+ // Add condition
+ critera.addCriteria(AddressbookContactDatabaseConstants.COLUMN_NAME_OWN_CONTACT, true);
+
+ // Get result
+ Result<? extends Storeable> result = this.getBackend().doSelectByCriteria(critera);
+
// Deligate this call to backend
- return this.getBackend().isRowFound(AddressbookContactDatabaseConstants.COLUMN_NAME_OWN_CONTACT, true);
+ return result.hasNext();
}
/**