[Mydatabasepilot-cvs] MyDatabasePilot/dbProcessBody ShowTables.cfm,1.4,1.5
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-04-24 03:07:16
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot/dbProcessBody In directory sc8-pr-cvs1:/tmp/cvs-serv7973/dbProcessBody Modified Files: ShowTables.cfm Log Message: Internal Structure Changed: [ 725992 ] Create new session var dbName Index: ShowTables.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/dbProcessBody/ShowTables.cfm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ShowTables.cfm 13 Apr 2003 04:58:26 -0000 1.4 --- ShowTables.cfm 24 Apr 2003 03:07:10 -0000 1.5 *************** *** 4,11 **** * Purpose: Displays the Body Content for the ShowTables Database Process * * Requiremets: -tableList Query must be run on same page prior to including this template * - * -dbGeneralInfo Query must be run on same page prior to including this * - * template * - * Todo: * - * Known Issues/Bugs: * ********************************************************************************************---> --- 4,7 ---- *************** *** 24,35 **** where MyDatabase is the name of the database currently in use. Since this variable name is not known until run time, we need a Dynamic Variable name called: ! TABLES_IN_#dbGeneralInfo.dbInUse# ---> <!--- Show Table Name ---> ! <td>#Evaluate("tableList.TABLES_IN_#dbGeneralInfo.dbInUse#")#</td> <!--- Link to Show Table Fields and Properties ---> ! <td><a href="#currentPath#?#session.URLToken#&dbProcess=ShowFields&table=#URLEncodedFormat(Evaluate("TABLES_IN_#dbGeneralInfo.dbInUse#"))#">View Structure</a></td> <!--- Link to Show Records ---> ! <td><a href="#currentPath#?#session.URLToken#&dbProcess=ShowRecords&table=#URLEncodedFormat(Evaluate("TABLES_IN_#dbGeneralInfo.dbInUse#"))#">View Records</a></td> <!--- Link to Alter Table---> <td>Alter Table</td> --- 20,31 ---- where MyDatabase is the name of the database currently in use. Since this variable name is not known until run time, we need a Dynamic Variable name called: ! TABLES_IN_#session.dbName# ---> <!--- Show Table Name ---> ! <td>#Evaluate("tableList.TABLES_IN_#session.dbName#")#</td> <!--- Link to Show Table Fields and Properties ---> ! <td><a href="#currentPath#?#session.URLToken#&dbProcess=ShowFields&table=#URLEncodedFormat(Evaluate("TABLES_IN_#session.dbName#"))#">View Structure</a></td> <!--- Link to Show Records ---> ! <td><a href="#currentPath#?#session.URLToken#&dbProcess=ShowRecords&table=#URLEncodedFormat(Evaluate("TABLES_IN_#session.dbName#"))#">View Records</a></td> <!--- Link to Alter Table---> <td>Alter Table</td> |