예제 #1
0
파일: table.php 프로젝트: extend/wee
 public function instantiateObject($sClass, array $aData)
 {
     return parent::instantiateObject($sClass, $aData);
 }
예제 #2
0
 /**
 	Initialises a new sqlite table object.
 
 	This class should NEVER be instantiated manually.
 	Instances of this class should be returned by weeSQLiteDbMeta.
 
 	@param	$oMeta	The sqlite dbmeta object.
 	@param	$aData	The object data.
 */
 public function __construct(weeSQLiteDbMeta $oMeta, array $aData)
 {
     parent::__construct($oMeta, $aData);
 }
예제 #3
0
 /**
 	Returns the quoted schema-qualified name of the table.
 
 	@return	string						The quoted schema-qualified name of the table.
 */
 public function quotedName()
 {
     return $this->db()->escapeIdent($this->schemaName()) . '.' . parent::quotedName();
 }