[Mydatabasepilot-cvs] MyDatabasePilot/dbProcessBody ShowRecords.cfm,1.1,1.2
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-04-14 02:34:30
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot/dbProcessBody In directory sc8-pr-cvs1:/tmp/cvs-serv14355 Modified Files: ShowRecords.cfm Log Message: Functionality Added: [ 720538 ] List Field Names for ShowRecords dbProcess Index: ShowRecords.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/dbProcessBody/ShowRecords.cfm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ShowRecords.cfm 13 Apr 2003 04:49:26 -0000 1.1 --- ShowRecords.cfm 14 Apr 2003 02:34:27 -0000 1.2 *************** *** 8,10 **** <!---||| Show Records in Current Table |||---> ! Test Show Records \ No newline at end of file --- 8,18 ---- <!---||| Show Records in Current Table |||---> ! <!--- Show table name ---> ! Table Name:<cfoutput>#url.table#</cfoutput> ! <table width="100%" border="1" cellspacing="0" cellpadding="2"> ! <tr> ! <!--- Create List of Field Names ---> ! <td>Field Names</td> ! <cfoutput query="fieldList"><td>#FIELD#</td></cfoutput> ! </tr> ! </table> \ No newline at end of file |