> If a field in access has never had anything in it at all does it appear as > NULL or as "". It appears as null. > So would you check it with <CFIF FieldName IS ""> or would you use <CFIF > FieldName IS NULL> Well, ColdFusion does not support the word "NULL", so you would use the <cfif FieldName is "">. Or, many people prefer: <cfif not len(trim(fieldname))> The latter is boolean and therefore evaluates slightly faster. - Sean ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
- RE: Allaire trips over itself - flame warning lsellers
- Re: Allaire trips over itself - flame warning JustinMacCarthy
- RE: Allaire trips over itself - flame warning Warrick, Mark
- RE: Access question Andy Ewings
- RE: Access question Andy Ewings
- RE: Access question Gavin Myers
- MySQL??? HappyToad.com
- RE: Access question Willy Ray
- Access question Kevin Schmidt
- Re: Access question Sean Daniels
- Re: Access question Shawnea Carter
- RE: Access question johnpatterson
- RE: Access question Jann VanOver
- RE: Access question Aaron Johnson
- RE: Access Question Bryan Love
- Re: Access Question Bill King
- Macromedia/Allaire Knowledge Base Tracy Bost
- RE: Macromedia/Allaire Knowledge Base Raymond Camden
- Re: Macromedia/Allaire Knowledge Base Owen Leonard
- Re: Macromedia/Allaire Knowledge Base Stephen Hait

