Represents all columns in a given table, table.* in SQL
Extends Instance PropertiesProperty | Type | Default Value | Description |
table | the table this all column expression represents. | ||
- function (table){
- this.table = table;
- }
Converts the ColumnAll expression to a string
Argumentsdataset used to created the SQL fragment, if the dataset is ommited then the default patio.Dataset implementation is used.
String the SQL columnAll expression fragment.
- function (ds){
- !Dataset && (Dataset = require("./dataset"));
- ds = ds || new Dataset();
- return ds.columnAllSql(this);
- }