Ferreteria/v0.5/table

From Woozle Writes Code
< Ferreteria‎ | v0.5
Revision as of 14:52, 15 March 2022 by htyp>Woozle
Jump to navigation Jump to search

About

Tables have been greatly simplified since v0.4, where they (along with Rows and Rowsets) were the basis for specialized classes that constituted what is now called Features. There are now just two classes

  • cTabloid: can use (but does not require) a Feature object; also maintains a static Table registry. Does nothing else.
  • cTable: adds functions to (1) fetch the Table's SQL name and (2) access the database engine object

It's uncertain whether this is a good design, or if either or both of these classes are even needed.

Related