Locating Data when *.cfm is in another folder
I'm really new to dealing with Cold Fusion. I have my database in a folder in the root directory of the web call access_db. My *.cfc and *.cfm files are all in the root also. And everything is peachy.But now I need to create a *.cfm in a folder call "2009" which is in the root directory.
Do I need to have the *.cfc in that same folder?
Example of *.cfc I built for Root and it works.
<cfcomponent>
<cffunction name="getIndPointCareerlist" access="public" returntype="query">
<cfset IndPointCareerlist="">
<cfquery name="IndPointCareerlist" datasource="owfootball_accesscf_Information">
SELECT IPTCNAME, IPTCPTS
FROM INDPOINTCAREER
</cfquery>
<cfreturn IndPointCareerlist>
</cffunction>
</cfcomponent>
I guess what I'm asking how do I tell the *.cfm to find the data when the file is in a different folder and what do I need in place to do this.
Thanks.
