DatabaseObject::existsInDatabase

(No version information available, might only be in Git)

DatabaseObject::existsInDatabaseCheck if object exists in database

Beschreibung

abstract public mysql_xdevapi\DatabaseObject::existsInDatabase ( void ) : bool

Verifies if the database object refers to an object that exists in the database.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Returns TRUE if object exists in the database, else FALSE if it does not.

Beispiele

Beispiel #1 mysql_xdevapi\DatabaseObject::existsInDatabase() example

<?php

$existInDb 
$dbObj->existsInDatabase();

?>