RE: What's the use of structures, anyway?

2000-04-24 Thread Reuben King
Developer Phone: 480.699.1084 http://www.desertraven.com/ PGP Key Available on Request -Original Message- From: Reuben King [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 20, 2000 16:45 To: [EMAIL PROTECTED] Subject: RE: What's the use of structures, anyway? It seems that you cannot

RE: What's the use of structures, anyway?

2000-04-23 Thread Mike Sheldon
] Subject: RE: What's the use of structures, anyway? It seems that you cannot store structures in client variables, at least not if the client variable is stored in a database... Can anyone confirm this or am I screwing something up

RE: What's the use of structures, anyway?

2000-04-22 Thread Reuben King
It seems that you cannot store structures in client variables, at least not if the client variable is stored in a database... Can anyone confirm this or am I screwing something up? -- Archives:

RE: What's the use of structures, anyway?

2000-04-22 Thread Dan G. Switzer, II
| |www | http://www.pengoworks.com | | mailto | [EMAIL PROTECTED] | ++---+ -Original Message- From: Reuben King [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 20, 2000 5:29 PM To: [EMAIL PROTECTED] Subject: RE: What's the use of structures

Re: What's the use of structures, anyway?

2000-04-22 Thread Steve Aylor
To whom ever is responsible for this tasy piece: cfscript access_flags = StructNew(); access_flags["is_superuser"] = StructNew(); access_flags["is_superuser"].default_value = 0; access_flags["is_superuser"].description = "Is this user an administrator?"; /cfscript Thank you much

Re: What's the use of structures, anyway?

2000-04-22 Thread Steve Aylor
Good Gawd Man... thats damn funny! In 034201bfaafb$e9f90eb0$[EMAIL PROTECTED], Mike Sheldon ([EMAIL PROTECTED]) in a fit of unbridled passion, wrote: But as a recent instigator of a list "hate" crime - I may in a small way, be responsible for instigating/propogating the recent bad vibe

RE: What's the use of structures, anyway?

2000-04-20 Thread Mike Sheldon
Wow, I feel so enlightened! Imagine all the wasted time I've spent using structures! Every stop to consider that structures can be members of structures, or that you can have arrays of structures? That definitely pulls you out of two dimensions. Yes, Structures are nearly identical to

RE: What's the use of structures, anyway?

2000-04-20 Thread Jennifer
At 12:09 PM 4/20/00 -0700, you wrote: Wow, I feel so enlightened! Imagine all the wasted time I've spent using structures! Every stop to consider that structures can be members of structures, or that you can have arrays of structures? That definitely pulls you out of two dimensions. Alright, I

Re: What's the use of structures, anyway?

2000-04-20 Thread Kevin Marshall
Reuben, I totally understand what you're saying. When I first considered structures, they seemed like really complicated mechanisms for holding data that could be just as easily placed into a query or a list. What I've found, however, is that structures can be incredibly powerful if you

RE: What's the use of structures, anyway?

2000-04-20 Thread jstiefel
You seem to be missing something here. Structure's can be nested to the Nth level: cfscript access_flags = StructNew(); access_flags["is_superuser"] = StructNew(); access_flags["is_superuser"].default_value = 0; access_flags["is_superuser"].description = "Is this

Re: What's the use of structures, anyway?

2000-04-20 Thread Sharon DiOrio
The real power of structures isn't in a single level, it's in nesting them and creating complex data hierarchies. For instance, a structure I could use, for example: [Country].[State].[City].[Company] OR UnitedStates.Massachusetts.Boston.Mindseye If you've used javascript (or any other

RE: What's the use of structures, anyway?

2000-04-20 Thread Judah McAuley
At 02:24 PM 4/20/2000 -0500, you wrote: Alright, I think it's beer:30 again. We're getting cranky. Myself included. Yeah, I agree. Even though it's only 1 something in my time zone. Good thing I work only 2 block from a fantastic pub... Judah

RE: What's the use of structures, anyway?

2000-04-20 Thread Reuben King
[This followup was posted to cf-talk and a copy was sent to the cited author.] In D09A1A0FB7FDD211A92D00805FBBD8A1A57946@CLTNTSXCHANGE, [EMAIL PROTECTED] ([EMAIL PROTECTED]) in a fit of unbridled passion, wrote: You seem to be missing something here. Structure's can be nested to the Nth