(file) Return to application.cfm CVS log (file) (dir) Up to [Development] / p2rx-programs

File: [Development] / p2rx-programs / application.cfm (download)
Revision: 1.3, Wed Oct 12 17:23:05 2005 UTC (4 years, 1 month ago) by pKanel
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +15 -6 lines
Added CFLOCK

<!---  	Name:  			application.cfm
    	Purpose: 		This file is being used by all files. It creates the datasource.
		Date created: 	7/25/2005			Terry	
       	Dependancy: 	
		Variables: 		
		Date changed: 
						08/26/2005		Prabin		Documentation 
--->

<cfapplication 
	name="P2RicProgramsUpdates"
	SESSIONMANAGEMENT="yes"
	applicationtimeout="#createtimespan(0,0,20,0)#" 
	SESSIONTIMEOUT="#CreateTimeSpan(0,0,20,0)#"
	CLIENTMANAGEMENT="No">

<cflock scope="SESSION" timeout="15">
	<cfset programsdb="programs">
	<cfquery name="getState" datasource="#programsdb#">
		Select 	*
		From	States
		Order By State ASC
	</cfquery>
</cflock>	

CVS Admin
Powered by
ViewCVS 1.0-dev