00001 <?php 00025 abstract class BaseDatabaseFrontend extends BaseFrameworkSystem implements DatabaseFrontendInterface { 00026 // Constants for exceptions 00027 const EXCEPTION_SQL_QUERY = 0x140; 00028 00032 private $limitInstance = null; 00033 00040 protected function __construct($className) { 00041 // Call parent constructor 00042 parent::__construct($className); 00043 00044 // Clean up a little 00045 $this->removeNumberFormaters(); 00046 } 00047 } 00048 00049 // [EOF] 00050 ?>
1.5.6