Exemplo n.º 1
0
 /**
  * Returns the alias under which a real column will be known in PHP-land.
  *
  * This alias defines how you may refer to the column in the query builder. You
  * may redefine this if, for example, you wish to change the name of a real column
  * without impacting the PHP application, or the other way around.
  *
  * @param GlueDB_Column $column
  *
  * @return string
  */
 public function get_column_alias(GlueDB_Column $column)
 {
     return $column->dbcolumn();
 }