Update of /cvsroot/mydatabasepilot/MyDatabasePilot/dbProcessInit
In directory sc8-pr-cvs1:/tmp/cvs-serv13998/dbProcessInit
Added Files:
AddField.cfm
Log Message:
Functionality Added:
[ 744006 ] Added File dbProcessInit/AddField.cfm
- Calls Custom Tag Query/fieldList.cfm
Included dbProcessInit/AddField.cfm in Initialization
Switch of MyDatabasePilot.cfm
--- NEW FILE: AddField.cfm ---
<!---*******************************************************************************************
* Copyright: MyDatabase Pilot is distributed under the terms of the GNU GPL license *
* Template: dbProcessInit/AddField.cfm *
* Purpose: Initialize AddField Database Process *
********************************************************************************************--->
<!---||| Get List of Field Names and Their Properties |||--->
<!--- Initiate a Read Only lock to ensure the integrity of session variables --->
<cflock timeout=20 throwontimeout="no" type="readonly" scope="SESSION">
<!--- Invoke fieldList Custom Tag via CFModule --->
<cfmodule template="../Query/fieldList.cfm"
queryName="fieldList"
datasource="#SESSION.dataSource#"
username="#SESSION.userName#"
password="#SESSION.password#"
table="#URL.table#">
</cflock>
|