[Mydatabasepilot-cvs] MyDatabasePilot MyDatabasePilot.cfm,1.12,1.13
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-05-16 02:39:10
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot In directory sc8-pr-cvs1:/tmp/cvs-serv3954 Modified Files: MyDatabasePilot.cfm Log Message: Internal Structure Changed: [ 738602 ] Converted Query/recordCount.cfm to a CUSTOM TAG Index: MyDatabasePilot.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/MyDatabasePilot.cfm,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MyDatabasePilot.cfm 15 May 2003 03:47:56 -0000 1.12 --- MyDatabasePilot.cfm 16 May 2003 02:39:06 -0000 1.13 *************** *** 64,69 **** <!---||| If ShowRecords ... |||---> <cfcase value="ShowRecords"> ! <!--- Find out the number of records in the current table ---> ! <cfinclude template="Query/recordCount.cfm"> <!---||| Determine if any of the navigation buttons were used to request a set of records and set set limit variables accordingly |||---> --- 64,77 ---- <!---||| If ShowRecords ... |||---> <cfcase value="ShowRecords"> ! <!--- Initiate a Read Only lock to ensure the integrity of session variables ---> ! <cflock timeout=20 throwontimeout="no" type="readonly" scope="SESSION"> ! <!--- Get Record Count ---> ! <cfmodule template="Query/recordCount.cfm" ! queryName="recordCount" ! datasource="#SESSION.dataSource#" ! username="#SESSION.userName#" ! password="#SESSION.password#" ! table="#URL.table#"> ! </cflock> <!---||| Determine if any of the navigation buttons were used to request a set of records and set set limit variables accordingly |||---> |