[Mydatabasepilot-cvs] MyDatabasePilot MyDatabasePilot.cfm,1.18,1.19
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-05-24 17:19:45
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot In directory sc8-pr-cvs1:/tmp/cvs-serv30213 Modified Files: MyDatabasePilot.cfm Log Message: Internal Structure Changed: [ 742784 ] Moved Initialization Code for dbProcess ShowFields to include file dbProcessInit/ShowFields.cfm Index: MyDatabasePilot.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/MyDatabasePilot.cfm,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** MyDatabasePilot.cfm 23 May 2003 02:28:49 -0000 1.18 --- MyDatabasePilot.cfm 24 May 2003 17:12:18 -0000 1.19 *************** *** 14,35 **** <!--- Run Requested Database Command or Query ---> <!-----------------------------------------------> ! <!---||| Which dbProcess was requested? |||---> <cfswitch expression="#dbProcess#"> - <!---||| If ShowTables ... |||---> <cfcase value="ShowTables"><cfinclude template="dbProcessInit/ShowTables.cfm"></cfcase> ! ! <!---||| If ShowFields ... |||---> ! <cfcase value="ShowFields"> ! <!--- Initiate a Read Only lock to ensure the integrity of session variables ---> ! <cflock timeout=20 throwontimeout="no" type="readonly" scope="SESSION"> ! <!--- Get List of Field Names and Their Properties ---> ! <cfmodule template="Query/fieldList.cfm" ! queryName="fieldList" ! datasource="#SESSION.dataSource#" ! username="#SESSION.userName#" ! password="#SESSION.password#" ! table="#URL.table#"> ! </cflock> ! </cfcase> <!---||| If ShowRecords ... |||---> --- 14,21 ---- <!--- Run Requested Database Command or Query ---> <!-----------------------------------------------> ! <!---||| Which dbProcess was requested? Include Initialization Files based on dbProcess |||---> <cfswitch expression="#dbProcess#"> <cfcase value="ShowTables"><cfinclude template="dbProcessInit/ShowTables.cfm"></cfcase> ! <cfcase value="ShowFields"><cfinclude template="dbProcessInit/ShowFields.cfm"></cfcase> <!---||| If ShowRecords ... |||---> |