DatabaseObject::existsInDatabase

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

DatabaseObject::existsInDatabaseCheck if object exists in database

說明

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

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

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

Returns true if object exists in the database, else false if it does not.

范例

示例 #1 mysql_xdevapi\DatabaseObject::existsInDatabase() example

<?php

$existInDb 
$dbObj->existsInDatabase();

?>