Ferreteria/v0.3/class/tQueryableSource: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.3‎ | class
Jump to navigation Jump to search
m (3 revisions imported: moving this project here)
 
(No difference)

Latest revision as of 16:43, 22 May 2022

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 -- //
    
}