Within a cfsrcipt tag:


   This doesn't work:

      while (NOT TablesSchemaRS.EOF) {
       if (TableType.Value is "Table") {
         TableNameList = ListAppend(TableNameList, TableName.Value);
         //TableTypeList = ListAppend(TableTypeList, TableType.Value);
       }
       TablesSchemaRS.MoveNext();
     }

   This does?


     while (NOT TablesSchemaRS.EOF) {
       if (TableType.Value is "Table") {
         TableNameList = ListAppend(TableNameList, TableName.Value);
       }
       TablesSchemaRS.MoveNext();
     }

Any idea why?

Either works in CF 4.x

I hope the answer is not "Uncomment all your cfscript code"!

TIA

Dick

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to