[Mydatabasepilot-cvs] MyDatabasePilot/dbProcessBody ShowTables.cfm,1.5,1.6
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-05-25 04:06:15
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot/dbProcessBody In directory sc8-pr-cvs1:/tmp/cvs-serv12058/dbProcessBody Modified Files: ShowTables.cfm Log Message: Cosmetic Change: [ 743005 ] Alternate the Row Colours in Show Tables Index: ShowTables.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/dbProcessBody/ShowTables.cfm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ShowTables.cfm 24 Apr 2003 03:07:10 -0000 1.5 --- ShowTables.cfm 25 May 2003 04:06:13 -0000 1.6 *************** *** 7,11 **** <!---||| Show Tables in Current Database |||---> ! <table width="100%" border="1" cellspacing="0" cellpadding="2"> <tr> <th>Table Name</th> --- 7,11 ---- <!---||| Show Tables in Current Database |||---> ! <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <th>Table Name</th> *************** *** 16,20 **** <!--- Create List of Tables ---> <cfoutput query="tableList"> ! <tr><!--- Detail: The tableList query creates a recordset with the column name TABLES_IN_MyDatabase where MyDatabase is the name of the database currently in use. Since this variable --- 16,22 ---- <!--- Create List of Tables ---> <cfoutput query="tableList"> ! <!--- Alternate the Row Colours from class style Odd to class style Even ---> ! <tr class="#IIF(tableList.currentrow MOD 2, DE('Odd'), DE('Even'))#"> ! <!--- Detail: The tableList query creates a recordset with the column name TABLES_IN_MyDatabase where MyDatabase is the name of the database currently in use. Since this variable |