0
1
Fork 0
hedera-web-mindshore/web/js/sql/field.js

30 lines
417 B
JavaScript
Executable File

/**
* The equivalent of a SQL field.
*
* @param {string} taget The name of the owner table
**/
Sql.Field = new Class
({
Extends: Sql.Expr
,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 + '`';
}
});