Source for file i_db_storable.class.php
Documentation is available at i_db_storable.class.php
// *** Tangra (Application Framework and Tools for PHP)
* Contains interface I_DB_Storable
* Interface that show that classes/objects that implements it can be saved in DB
* @param DB_Connection $dbc
public function save(DB_Connection $dbc);
* Loads the object from DB
* Returns $id on success or false on failure;
* @param DB_Connection $dbc
public function load_by_id(DB_Connection $dbc, $id);
|