| 1 | <?php |
||
| 11 | class ActiveAbstractObjectDump extends ActiveRecordAbstract { |
||
| 12 | protected static $_tableName = ''; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @return bool |
||
| 16 | */ |
||
| 17 | protected function dbInsert() { |
||
| 18 | // TODO: Implement dbInsert() method. |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Asks DB for last insert ID |
||
| 23 | * |
||
| 24 | * @return int|string |
||
| 25 | */ |
||
| 26 | protected function dbLastInsertId() { |
||
| 27 | // TODO: Implement dbLastInsertId() method. |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return bool |
||
| 32 | */ |
||
| 33 | protected function dbUpdate() { |
||
| 34 | // TODO: Implement dbUpdate() method. |
||
| 35 | } |
||
| 36 | |||
| 37 | } |
||
| 38 |