2016-09-26 09:28:47 +00:00
|
|
|
|
|
|
|
var Expr = require ('./expr');
|
|
|
|
|
2015-01-23 13:09:30 +00:00
|
|
|
/**
|
|
|
|
* The equivalent of a SQL field.
|
|
|
|
*
|
|
|
|
* @param {string} taget The name of the owner table
|
|
|
|
**/
|
2016-09-26 09:28:47 +00:00
|
|
|
module.exports = new Class
|
2015-01-23 13:09:30 +00:00
|
|
|
({
|
2016-09-26 09:28:47 +00:00
|
|
|
Extends: Expr
|
2015-01-23 13:09:30 +00:00
|
|
|
,Tag: 'sql-field'
|
|
|
|
,Properties:
|
|
|
|
{
|
|
|
|
name:
|
|
|
|
{
|
|
|
|
type: String
|
|
|
|
,value: null
|
|
|
|
},
|
|
|
|
target:
|
|
|
|
{
|
|
|
|
type: String
|
|
|
|
,value: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
,render: function (batch)
|
|
|
|
{
|
|
|
|
var sql = (this.target) ? '`' + this.target + '`.' : '';
|
|
|
|
return sql + '`' + this.name + '`';
|
|
|
|
}
|
|
|
|
});
|