1
0
Fork 0
easejs/scripts/ex/access-modifiers-implicit.js

39 lines
858 B
JavaScript

var DatabaseRecord = Class( 'DatabaseRecord',
{
/* implicitly private */
_connection: null,
__construct: function( host, user, pass )
{
this._connection = this._connect( host, user, pass );
},
/* implicitly private */
_connect: function( host, user, pass )
{
// (do connection stuff)
return { host: host };
},
'protected query': function( query )
{
// perform query on this._connection, rather than exposing
// this._connection to subtypes
},
'protected escapeString': function( field )
{
return field.replace( "'", "\\'" );
},
/* public by default */
getName: function( id )
{
return this._query(
"SELECT name FROM users WHERE id = '" +
this._escapeString( id ) + "' LIMIT 1"
);
},
} );