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

39 lines
810 B
JavaScript

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