[Mydatabasepilot-cvs] MyDatabasePilot Application.cfm,1.3,1.4
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-04-23 03:45:50
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot In directory sc8-pr-cvs1:/tmp/cvs-serv31172 Modified Files: Application.cfm Log Message: Internal Structure Changed: [ 726010 ] Remove Unnecessary cfif NOT IsDefined() Calls Index: Application.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/Application.cfm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Application.cfm 21 Apr 2003 22:31:51 -0000 1.3 --- Application.cfm 23 Apr 2003 03:45:44 -0000 1.4 *************** *** 34,41 **** <cflock timeout = "30" throwontimeout="no" type = "exclusive" scope = "session"> <!--- Initialize variables used by queries to connect to the database ---> ! <!--- You must set these variables to an actual database that you have complete access to ---> ! <cfif NOT IsDefined("session.dataSource")><cfset session.dataSource = ""></cfif> <!---Enter default Data Source ---> ! <cfif NOT IsDefined("session.userName")><cfset session.userName = ""></cfif> <!--- Enter default User Name ---> ! <cfif NOT IsDefined("session.password")><cfset session.password = ""></cfif> <!--- Enter default password ---> </cflock> --- 34,44 ---- <cflock timeout = "30" throwontimeout="no" type = "exclusive" scope = "session"> <!--- Initialize variables used by queries to connect to the database ---> ! <cfif NOT IsDefined("session.dataSource")> ! <!--- If you choose to configure a default database, you must set these variables to an actual ! database that you have complete access to ---> ! <cfset session.dataSource = ""> <!--- Enter default Data Source ---> ! <cfset session.userName = ""> <!--- Enter default User Name ---> ! <cfset session.password = ""> <!--- Enter default password ---> ! </cfif> </cflock> |