[Mydatabasepilot-cvs] MyDatabasePilot/Query alterTable.cfm,1.2,1.3
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-06-13 02:39:11
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot/Query In directory sc8-pr-cvs1:/tmp/cvs-serv3121/Query Modified Files: alterTable.cfm Log Message: Functionality Added: [ 753698 ] Query/AlterTable.cfm -Added Column Type -Started Type Options Index: alterTable.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/Query/alterTable.cfm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** alterTable.cfm 12 Jun 2003 03:49:22 -0000 1.2 --- alterTable.cfm 13 Jun 2003 02:39:06 -0000 1.3 *************** *** 68,72 **** <!--- Column Type ---> ! </cfcase> <!--- ToDo Cases: ---> --- 68,78 ---- <!--- Column Type ---> ! <cfif ATTRIBUTES.alterSpec[i].colType IS "" OR ATTRIBUTES.alterSpec[i].colType IS "Empty"> ! <cfset rawSQL = "#rawSQL# DataTypeNotSpecified_#i#"> ! <cfset htmlSQL = "#htmlSQL# <span class=""Missing"">DataTypeNotSpecified_#i#</span>"> ! <cfelse> ! <cfset rawSQL = "#rawSQL# #ATTRIBUTES.alterSpec[i].colType#"> ! <cfset htmlSQL = "#htmlSQL# <span class=""KeyWord"">#ATTRIBUTES.alterSpec[i].colType#</span>"> ! </cfif> </cfcase> <!--- ToDo Cases: ---> |