1 : <cfcomponent>
2 : <cffunction name="getAllArtists" access="remote" returntype="Any">
3 : <cfquery name="getAllArtists" datasource="jazzworld">
4 : SELECT personId, firstName, lastName, instrumentName from qryArtistMain order by lastName
5 : </cfquery>
|