Model Class
getTableNamePrefix()
Signature
Section titled “Signature”getTableNamePrefix() — returns string
Available in: model
Category: Miscellaneous Functions
Description
Section titled “Description”Returns the table name prefix set for the table.
Examples
Section titled “Examples”// Get the table name prefix for this user when running a custom query.
<cffunction name="getDisabledUsers" returntype="query">
<cfquery datasource="#get('dataSourceName')#" name="local.disabledUsers">
SELECT *
FROM #this.getTableNamePrefix()#users
WHERE disabled = 1
</cfquery>
<cfreturn local.disabledUsers>
</cffunction>