Ferreteria/v0.3/class/tQueryableSource

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Jump to navigation Jump to search

Template:Page/code/class

/*::::
  USAGE: could be a query or a table
  HISTORY:
    2018-12-30 adapting from tSelectable_Source
      Discarding function GetStoragePortals() - doesn't belong here
        was: $rs = $this->SpawnRows(); return $rs->GetStoragePortals();
*/
trait tQueryableSource {
    // ++ FRAMEWORK ++ //

    abstract protected function GetDatabase();

    // -- FRAMEWORK -- //
    // ++ SETUP ++ //

    abstract public function FieldsString_forSelect();
    abstract public function SourceString_forSelect();

    // -- SETUP -- //
    
}