RE: custom tag help

2004-10-19 Thread Pascal Peters
Phillip, If you are using CF5, this wont work because variables wasn't a structure back then. I'm just telling you this, not to correct James, but because you are using CT and not CFC (so I think you might be on pre CFMX). Before CFMX you would have to (reluctantly) use Evaluate():

Re: Securing the ColdFusion Administrator...

2004-10-19 Thread Thomas Chiverton
On Saturday 16 Oct 2004 01:23 am, Troy Simpson wrote: Any ideas why? Have you read httpd.apache.org ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road, WELLS. BA5 1AF Tel: +44 (0)1749

Re: [sot] moving to JSP

2004-10-19 Thread Mark Drew
Do you mean Strutts ? On Mon, 18 Oct 2004 15:44:34 -0400, Douglas Knudsen [EMAIL PROTECTED] wrote: maybe a cf-community thingbut wanting to move to JSP stuffs, anyone out there move to JSP stuffs from the CF world? Is there really such a thing as RAD in the Java/JSP world? I'm

Re: Re: [sot] moving to JSP

2004-10-19 Thread simon
I've been working a lot on CF/Java hybrids... to be honest, I don't end-up using JSP much. In the J2EE world, JSP is primarily a presentation tier construct... ColdFusion is much better suited for the presentation tier. Java Beans, EJBs, simple classes, and sometimes servlets, are often times

OT: Field Naming

2004-10-19 Thread Andrew Dixon
Hi Everyone. I'm just starting a major project for a government client and the first job is to design the database. Is there any recongnised convention on the naming of database fields. In the past I have always named them [table_name_field_name] for example: projects_id where the table is called

Re: Execute Query string w CFQUERYPARAM

2004-10-19 Thread Aaron Rouse
I'd assume that is something that started at a certain version of CF? Does it take just one cfqueryparam in the statement for that to happen? Such as a insert statement with two columns, one of which has a cfqueryparam and the other is a hard coded value(for whatever reason). On Tue, 19 Oct

Getting the last X days' worth of posts.

2004-10-19 Thread Keith Gaughan
This is something for my personal site, and nothing work related. On my weblog homepage, I want it to list all the posts in the last seven days that have posts. Here's what I'm doing right now: SELECT DISTINCT E1.entry_id, E1.date_posted, E1.title, E1.body FROM entries AS E1, entries AS E2

Re: Field Naming

2004-10-19 Thread Aaron DC
Hi Andrew Based purely on ituition / gut feel / experience, I never name a table as its plural, always singular form, so Project table, not Projects table. Sorry I know of no published field naming standard, but do something similar to what you have suggested. Aaron - Original Message

RE: Field Naming

2004-10-19 Thread Tangorre, Michael
From: Andrew Dixon [mailto:[EMAIL PROTECTED] I'm just starting a major project for a government client and the first job is to design the database. Is there any recongnised convention on the naming of database fields. In the past I have always named them [table_name_field_name] for

Another Is this Homesite feature in DW? question

2004-10-19 Thread Peterson, Andrew S.
Hi, Homesite has a nice AutoCompletion feature whereby you enter a trigger string and it spits out the remainder of the code for you. For instance, you enter '#att and it will automatically add ributes.# and even place the cursor before the pound sign and after the period. I cannot find this

Re: Re: [sot] moving to JSP

2004-10-19 Thread Douglas Knudsen
danke simon. good points about using CF as the pres layer. i might be doing some websphere development, someone here called it the M1 Abrahms of app servers, lol. With that cost, hard to convince them to put CF on the box as well. we shall see. mark, ok strutts. strutts is a framework, like

Re: OT: Field Naming

2004-10-19 Thread Keith Gaughan
Andrew Dixon wrote: Hi Everyone. I'm just starting a major project for a government client and the first job is to design the database. Is there any recongnised convention on the naming of database fields. In the past I have always named them [table_name_field_name] for example:

Re: OT: Field Naming

2004-10-19 Thread Andrew Dixon
After a quick search on Google I found this: http://www.ss64.com/orasyntax/naming.html Which seems like a good little guide. It mentions an ISO standard (ISO11157) but I had a quick look at this and this appears to be a more general standard for data type naming. Andrew. On Tue, 19 Oct 2004

RE: Field Naming

2004-10-19 Thread d.a.collie
As said there is no definitive but here's my two pennies worth. After all, we are talking about sets here, and it's natural to pluralise them. My old database teacher would have a fit with that... but each to their own :) We use two words to describe (and name) each table An example here

Re: Field Naming

2004-10-19 Thread Deanna Schneider
There's whole religions dealing with table-naming conventions. For instance, I'm in the table names are singular sect. My other conventions are: prepend table names with project name/abbreviation. (We do this because we'll have multiple projects in the same DB, which in itself is not a best

RE: custom tag help

2004-10-19 Thread Phillip Perry
No i'm using cfmx. I just got on so I haven't tested anything yet. Phil -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 3:10 AM To: CF-Talk Subject: RE: custom tag help Phillip, If you are using CF5, this wont work because variables

UUID as cftoken / createUUID bug

2004-10-19 Thread Andy Allan
Anyone know how the CFAdmin creates UUIDs for cftoken (on the Server Settings/Settings page)? Basically wanting to know if it uses createUUID() and is therefore affected by the clock speed bug affecting createUUID() on Windows

Re: Field Naming

2004-10-19 Thread Ian Sheridan
Andrew, I usually go with this method: Name of application == My Sample Application == msa_ Table for users == msa_usr_users User table fields == usr_id usr_firstname usr_lastname And a Foreign Key would be like so == usr_uro_id (this would be a foreign key to the

RE: Execute Query string w CFQUERYPARAM

2004-10-19 Thread Mark A Kruger
Hey - in regards to this topic I found an insiteful article in a Builder.com newsletter. Sometimes an SP doesn't give you the performance gains you think it could because of the query cache. I couldn't find a link to it on builder so I posted it on my blog. http://blog.mxconsulting.com/ -Mk

RE: Field Naming

2004-10-19 Thread Robertson-Ravo, Neil (RX)
Again, its all personal choice. I usually steer well clear of underscores as a rule as it can be hard to distinguish between multiple underscores.. Normally we go for the following approach: Tables : tblEventSettings And column names using Hungarian Notation (which has its adversaries too!):

Re: OT: Field Naming

2004-10-19 Thread Jochem van Dieten
Andrew Dixon wrote: I'm just starting a major project for a government client and the first job is to design the database. Is there any recongnised convention on the naming of database fields. Does the client have other databases? Which convention do they use? Jochem

Re: Field Naming

2004-10-19 Thread Keith Gaughan
[EMAIL PROTECTED] wrote: As said there is no definitive but here's my two pennies worth. After all, we are talking about sets here, and it's natural to pluralise them. My old database teacher would have a fit with that... but each to their own :) Maybe so, but it makes a lot of sense

RE: Field Naming

2004-10-19 Thread Tangorre, Michael
From: Robertson-Ravo, Neil (RX) Again, its all personal choice. I usually steer well clear of underscores as a rule as it can be hard to distinguish between multiple underscores.. Out of the following, I find option 1 to be the easiest to read. APPLICATION_USER APPLICATION-USER

Re: OT: Field Naming

2004-10-19 Thread Andrew Dixon
Hi Jochem. No. They have no other database at the the moment. At the moment all the data is keep in a strange series of Excel sheets which has become unmanageable (I'm attempting to decipher at the moment). The reason I asked the question was because in a recent meeting with them one of them

Dreamweaver Autocomplete

2004-10-19 Thread Ewok
In CF Studio I had my own custom vtm's and a ton of autocompleted tags set up and loved it. Can you not do the same in Dreamweaver MX? I see the vtm's so I can probably add insight for my custom tags pretty easily but I'd love to have my old autocompletes back for the constant reuse of tags that

Re: Execute Query string w CFQUERYPARAM

2004-10-19 Thread Aaron Rouse
Does the same type of logic apply in Oracle or does it handle SPs differently than SQL Server? On Tue, 19 Oct 2004 09:02:30 -0500, Mark A Kruger [EMAIL PROTECTED] wrote: Hey - in regards to this topic I found an insiteful article in a Builder.com newsletter. Sometimes an SP doesn't give you

RE: Field Naming

2004-10-19 Thread Robertson-Ravo, Neil (RX)
but when you have DBs with hundreds of tables, this can add up. Erm...that statement isn't true. The DB will probably work faster with grouped tablenames over ad-hoc names. You are correctdo what you feel confortable with failing that follow best-practice and examples in-house. N

Re: OT: Field Naming

2004-10-19 Thread Jochem van Dieten
Andrew Dixon wrote: No. They have no other database at the the moment. At the moment all the data is keep in a strange series of Excel sheets which has become unmanageable (I'm attempting to decipher at the moment). The reason I asked the question was because in a recent meeting with them

RE: Execute Query string w CFQUERYPARAM

2004-10-19 Thread Andy Ousterhout
Nail bitter down to the finish with major lawsuits to follow. Buy stock in antacid companies. Andy -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 9:03 AM To: CF-Talk Subject: RE: Execute Query string w CFQUERYPARAM Hey - in regards to

RE: Dreamweaver Autocomplete

2004-10-19 Thread Robertson-Ravo, Neil (RX)
Isn't the snippets the equivalent in DW? -Original Message- From: Ewok [mailto:[EMAIL PROTECTED] Sent: 19 October 2004 15:17 To: CF-Talk Subject: Dreamweaver Autocomplete In CF Studio I had my own custom vtm's and a ton of autocompleted tags set up and loved it. Can you not do the same

Re: Dreamweaver Autocomplete

2004-10-19 Thread Massimo Foti
In CF Studio I had my own custom vtm's and a ton of autocompleted tags set up and loved it. Can you not do the same in Dreamweaver MX? I see the vtm's so I can probably add insight for my custom tags pretty easily but I'd love to have my old autocompletes back for the constant reuse of tags

RE: Field Naming

2004-10-19 Thread Tangorre, Michael
From: Robertson-Ravo, Neil (RX) but when you have DBs with hundreds of tables, this can add up. Erm...that statement isn't true. How so? You mean to tell me that this: tblA tblB tblC tblD tblE Is faster than: A B C D E ?

RE: Dreamweaver Autocomplete

2004-10-19 Thread Ewok
Dunno... are they -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 10:25 AM To: CF-Talk Subject: RE: Dreamweaver Autocomplete Isn't the snippets the equivalent in DW? -Original Message- From: Ewok [mailto:[EMAIL

Re: Field Naming

2004-10-19 Thread Jochem van Dieten
Tangorre, Michael wrote: From: Robertson-Ravo, Neil (RX) Again, its all personal choice. I usually steer well clear of underscores as a rule as it can be hard to distinguish between multiple underscores.. Out of the following, I find option 1 to be the easiest to read.

Re: Field Naming

2004-10-19 Thread Jochem van Dieten
Ian Sheridan wrote: Name of application == My Sample Application == msa_ Table for users == msa_usr_users Application prefix? Isn't that what schema's are for? CREATE SCHEMA msa ... CREATE TABLE msa.users ... Jochem ~|

Re: Field Naming

2004-10-19 Thread Russell Patterson
This is my style as well. I personally find using the _ underscore cumbersome and have just never got around to using it. I do mix Caps Small letters to differentiate the elements of a field name. Russell - Original Message - From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] To:

RE: Field Naming

2004-10-19 Thread Robertson-Ravo, Neil (RX)
Well it will probably be negligible, but are you planning to name your tables A,B,C,D,E etc...? You will be in the same boat of any naming convention unless you only want tables names A,B,C or, AA, BB, CC or even AAA, BBB,CCC etc... ;-) N -Original Message- From: Tangorre, Michael

RE: Execute Query string w CFQUERYPARAM

2004-10-19 Thread Mark A Kruger
Uh... did I miss something? -Mark -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 9:23 AM To: CF-Talk Subject: RE: Execute Query string w CFQUERYPARAM Nail bitter down to the finish with major lawsuits to follow. Buy stock in antacid

RE: Dreamweaver Autocomplete

2004-10-19 Thread Ewok
If I recall, studio used vtm files as well. I remember writing quite a few tag insights for my custom tags. I'm not after insights, Im after autocompletion of text. Im not sure what snippets are in DW either since I stuck with studio for as long as I could -Original Message- From: Massimo

Re: Field Naming

2004-10-19 Thread Jochem van Dieten
Robertson-Ravo, Neil (RX) wrote: but when you have DBs with hundreds of tables, this can add up. Erm...that statement isn't true. The DB will probably work faster with grouped tablenames over ad-hoc names. With the one database that I know enough about the internals to say something

RE: Field Naming

2004-10-19 Thread Tangorre, Michael
From: Robertson-Ravo, Neil (RX) Well it will probably be negligible, but are you planning to name your tables A,B,C,D,E etc...? You will be in the same boat of any naming convention unless you only want tables names A,B,C or, AA, BB, CC or even AAA, BBB,CCC etc... ;-) A better example

RE: Field Naming

2004-10-19 Thread Tangorre, Michael
What is wrong with application_user? I prefer to keep everything in lowercase so I can easily distinguish SQL keywords from identifiers. Good point. If I weren't so tied to the color coding of the database IDEs I use, then this would be my choice as well; but since the color coding

RE: Field Naming

2004-10-19 Thread Robertson-Ravo, Neil (RX)
Yeah...I suppose it is down to each RDBMS but I know for SQL Server the performance difference would not even significant or even on the scale. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: 19 October 2004 15:36 To: CF-Talk Subject: Re: Field Naming

RE: Field Naming

2004-10-19 Thread Robertson-Ravo, Neil (RX)
It would be negligible, if any. It would all depend on, like Jochem stated on your RDBMS but in SQL Server you will find no difference from the internal QOE and the sysobject table. -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: 19 October 2004 15:44 To:

Re: Field Naming

2004-10-19 Thread Ian Sheridan
Jochem, Your right, but when you have multiple apps using the same DB or when the user account does not have permissions to do CREATE SCHEMA, this comes in handy for me. Also, I do the 'My Sample Application' == msa_ thing anyway in my file naming so this helps in keeping things straight in my

Re: Field Naming

2004-10-19 Thread Stephen Moretti (cfmaster)
Robertson-Ravo, Neil (RX) wrote: but when you have DBs with hundreds of tables, this can add up. Erm...that statement isn't true. The DB will probably work faster with grouped tablenames over ad-hoc names. Really? I don't see why it would... But I think Mike's point was from the

Re: Dreamweaver Autocomplete

2004-10-19 Thread Massimo Foti
If I recall, studio used vtm files as well. I remember writing quite a few tag insights for my custom tags. The nice thing about DW is that you can add/edit VTML for tag insights using a GUI I'm not after insights, Im after autocompletion of text. Then you have to go to: Help Extensions

RE: Field Naming

2004-10-19 Thread Calvin Ward
Isn't a set singular? So a set refers to one set such as a table containing People, but more than one set (sets - plural) would be like People and Organization (two sets). So a table name should be singular using the set reference :P -Original Message- From: [EMAIL PROTECTED] Date:

RE: Dreamweaver Autocomplete

2004-10-19 Thread Ewok
Thanks, I guess snippets are the closest I'm going to get in DW -Original Message- From: Massimo Foti [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 10:47 AM To: CF-Talk Subject: Re: Dreamweaver Autocomplete If I recall, studio used vtm files as well. I remember writing

Re: Dreamweaver Autocomplete

2004-10-19 Thread Massimo Foti
Thanks, I guess snippets are the closest I'm going to get in DW I suspect you are misreading my posts... What you are looking for is called Code Hints in DW and it's fully customizable (see previous post for directions) Massimo Foti DW tools:

REPOST: Access to cfschedule and cfindex/cfcollection listings

2004-10-19 Thread Burns, John D
Below is a post that I submitted last week and I didn't get any responses. Can anyone shed some insight on this? Does anyone know of a way via the CF service factory or some other way to be able to list the scheduled tasks that CF has and the collections and indexes that have been created?

Re: Dreamweaver Autocomplete

2004-10-19 Thread Russell Patterson
If you go to settings in DW, you can turn on Autocomplete. Russell - Original Message - From: Ewok [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 10:06 AM Subject: RE: Dreamweaver Autocomplete Thanks, I guess snippets are the closest I'm going to get

Re: Field Naming

2004-10-19 Thread Chris Peters
If everyone wants to get all technical with relational database theory, a table name should be singular because it is an ENTITY. Most entities (tables) have relationships (foreign key linking) with other entities. These relationships can be thought of as verbs, and entities can be thought of as

ColdFusion with ScreenSurfer

2004-10-19 Thread Ian Skinner
Anybody out there use, or are familiar with, the ScreenSurfer product by Inventu nee TeamStudio? I am trying to use the product to connect to a HP VT100 application but I am just not getting some fundamental concept(s). I can not event get passed the login to the application. I have

SOT: Drop-Ship Limitations to California

2004-10-19 Thread Dick Applebaum
This is SOT but it may affect anyone writing programs to do ecommerce with customers in California. I was recently told by a pcConnection representative that they could only drop-ship items to California from pcConnection warehouses in Ohio and Tennessee -- because of California tax laws.

RE: REPOST: Access to cfschedule and cfindex/cfcollection l istings

2004-10-19 Thread James Holmes
Do it however it's done in the CF Admin. -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, 19 October 2004 11:10 To: CF-Talk Subject: REPOST: Access to cfschedule and cfindex/cfcollection listings Below is a post that I submitted last week and I didn't get

Re: Field Naming

2004-10-19 Thread Keith Gaughan
Robertson-Ravo, Neil (RX) wrote: Well it will probably be negligible, but are you planning to name your tables A,B,C,D,E etc...? You will be in the same boat of any naming convention unless you only want tables names A,B,C or, AA, BB, CC or even AAA, BBB,CCC etc... ;-) I think his point

Re: ColdFusion with ScreenSurfer

2004-10-19 Thread simon
I used it quite a bit in an RD and prototyping capacity at Fig Leaf about 4 years ago... I even gave a presentation about it at DevCon in 2001... I don't have the slides or code anymore, but you could try asking Fig Leaf if they still have the materials laying around somewhere and are willing

Re: REPOST: Access to cfschedule and cfindex/cfcollection listings

2004-10-19 Thread Doug James
John, I think the files [cf_root_dir]\lib\neo-cron.xml (scheduled tasks) and [cf_root_dir]\lib\neo-verity.xml (indexes and collections) are your starting points. Doug James IT Developer MUSC - Hollings Cancer Center 843.792.6357 http://hcc.musc.edu Burns, John D wrote: Below is a post that I

RE: REPOST: Access to cfschedule and cfindex/cfcollection l istings

2004-10-19 Thread Burns, John D
Ok, and how do I figured that out? John Burns -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 11:30 AM To: CF-Talk Subject: RE: REPOST: Access to cfschedule and cfindex/cfcollection l istings Do it however it's done in the CF Admin.

Re: Field Naming

2004-10-19 Thread Keith Gaughan
Chris Peters wrote: If everyone wants to get all technical with relational database theory, a table name should be singular because it is an ENTITY. The way I was taught it, a table represents a *set* of entities. K. -- Keith Gaughan, Developer Digital Crew Ltd., Pembroke House, Pembroke

Re: Field Naming

2004-10-19 Thread Dick Applebaum
On Oct 19, 2004, at 8:47 AM, Keith Gaughan wrote: If everyone wants to get all technical with relational database theory, a table name should be singular because it is an ENTITY. The way I was taught it, a table represents a *set* of entities. Actually, a table is an entity that

Re: [sot] moving to JSP

2004-10-19 Thread Damien McKenna
Douglas Knudsen wrote: With that cost, hard to convince them to put CF on the box as well. Try BlueDragon.. http://www.newatlanta.com/ mark, ok strutts. strutts is a framework, like machii is, correct? Correct. i have been messing with machii lately. a RAD framework? h.now i

RE: Dreamweaver Autocomplete

2004-10-19 Thread Peterson, Andrew S.
Ewok, You're looking for the same thing I am - the Trigger String functionality, which does not seem to be the same as the Code Hints or other DW featues. I cannot find the equivalent in DW. Coincidentally, I posted almost the same question as you did this morning - see post below.

cflock

2004-10-19 Thread Phillip Perry
Hi, First, thanks to James and everyone else for the solutions to the custom tag. Now I'm into CFLOCK. I'm trying to make a custom tag for a banner rotation and I am using cflock. But when I execute my code it gives this error... Cannot lock APPLICATION scope. CFLock cannot be used to lock the

Re: Another Is this Homesite feature in DW? question

2004-10-19 Thread Nathan Strutz
I don't believe DWMX has the auto-complete feature built in, but CFEclipse does :) http://cfeclipse.tigris.org/ -nathan strutz Peterson, Andrew S. wrote: Hi, Homesite has a nice AutoCompletion feature whereby you enter a trigger string and it spits out the remainder of the code for

Re: cflock

2004-10-19 Thread Barney Boisvert
You just need to add a CFAPPLICATION tag to you app, and you'll be set. cheers, barneyb On Tue, 19 Oct 2004 12:42:47 -0400, Phillip Perry [EMAIL PROTECTED] wrote: Hi, First, thanks to James and everyone else for the solutions to the custom tag. Now I'm into CFLOCK. I'm trying to make a

Re: cflock

2004-10-19 Thread Ubqtous
You need to make sure you have an Application.cfm module in your application's directory. That Application.cfm module needs to have a CFAPPLICATION tag within it, which will allow you to use application-scoped variables and to CFLOCK that scope. On Tue, 19 Oct 2004 12:42:47 -0400, Phillip Perry

Re: Field Naming

2004-10-19 Thread Keith Gaughan
Dick Applebaum wrote: On Oct 19, 2004, at 8:47 AM, Keith Gaughan wrote: If everyone wants to get all technical with relational database theory, a table name should be singular because it is an ENTITY. The way I was taught it, a table represents a *set* of entities. Actually, a table

Re: SOT: Drop-Ship Limitations to California

2004-10-19 Thread Matt Robertson
Hi Dick, Sounds like a load of poo-poo. They must have some sort of tax problem themselves, or a lack of desire to comply with something. Either way their problem is becoming yours. I'd walk up the ladder over there and see if I could get a less-bogus answer. -- --Matt Robertson-- President,

Upload Utility

2004-10-19 Thread Greg Morphis
I'm needing to create an Upload Utility that will allow users to create directories, change directories, and upload files into those directories. Is this best done in the DB, storing the File information, I would imagine I'd need to store File information, and what directory it's under or is

RE: Execute Query string w CFQUERYPARAM

2004-10-19 Thread Joseph Flanigan
Mark thanks for the posting. The article makes a couple of good points but does it does not dismiss performance gains. The article illustrates using select queries in unplanned manner. When a procedure is complied, columns that depend on indexes are represented in the compile. These indexes

Re: Upload Utility

2004-10-19 Thread Douglas Knudsen
me, I would replace the idea of directory with the idea of category. Upload all files into a single library on the server, store the path, title, description, mimetype, categoryid, etc in the DB, then mosh out CFCONTENT to get teh file to the client. I can make u an admin on the unifiedportal

Re: Upload Utility

2004-10-19 Thread Massimo, Tiziana e Federica
or is this best done using cfdirectory and reading the contents of the folders? I've been using cfdirectory and it's becoming a pain. Anyone have any ideas or tutorials or anything I can look at? This isn't a tutorial, but it may be worth a check: http://www.olimpo.ch/tmt/cfc/tmt_file_io

Re: Consume a web service with JavaScript...possible?

2004-10-19 Thread Scott Stroz
Massimo, Thanx for the info, unfortuantely, most of the links on http://www.mozilla.org/projects/webservices/ that would give more info are not working. What I need is something that will walk me through the steps like I am an idiot. Both for consuming Web Services with JavaScript and creating

Re: Upload Utility

2004-10-19 Thread Dave Francis
CFFTP ?? - Original Message - From: Douglas Knudsen [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 1:13 PM Subject: Re: Upload Utility me, I would replace the idea of directory with the idea of category. Upload all files into a single library on the

Using a form field name as part of the name of a session variable

2004-10-19 Thread Peterson, Andrew S.
Hi, I'm hoping this is just a question of syntax. Is it possible to set part of the name of a session variable using the name of a form variable? The form name is dynamic too. Here's the code that ain't working: cfset session.qNum#form.qNum# = form.answer ^ For

RE: [cftalk] Re: Upload Utility

2004-10-19 Thread Daniel Mackey
Hi, Check out : http://www.cftagstore.com/tags/cffilemanagerv301.cfm Might be of interest to you. Regards, Dan. -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 18:17 To: CF-Talk Subject: [cftalk] Re: Upload Utility CFFTP ?? -

RE: cflock

2004-10-19 Thread Phillip Perry
Great thanks. I made a new folder in the main directory so I hadn't thought about making an app.cfm inside it. I guess that shows how important a app.cfm file really is -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 12:52 PM To: CF-Talk

Re: cflock

2004-10-19 Thread Jeff Congdon
You don't need one in the current directory, you just need to make sure the one in the previous directory has that cfapplication tag. If there's no app.cfm in the current diretory, CF will automatically look in ../, ../.../, etc until it finds one. Generally you want 1 app.cfm, and it should

RE: Using a form field name as part of the name of a session variable

2004-10-19 Thread Ewok
Try this cfset session[qNum#form.qNum#] = form.answer Or something like that... maybe without quotes? But I think with. -Original Message- From: Peterson, Andrew S. [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 1:23 PM To: CF-Talk Subject: Using a form field name as part

Re: Field Naming

2004-10-19 Thread Joseph Flanigan
The are so many options on which styles to follow, the approach I recommend is to pick a something, document it and follow your document. For my clients that I do database design work for, as part of the deliverable, I give them a copy of the style guide we used to develop the database. If

RE: Dreamweaver Autocomplete

2004-10-19 Thread Ewok
Yes, but I want to autocomplete custom text and tags like the example I posted. Thanks -Original Message- From: Russell Patterson [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 11:17 AM To: CF-Talk Subject: Re: Dreamweaver Autocomplete If you go to settings in DW, you can

RE: Drop-Ship Limitations to California

2004-10-19 Thread Cary Gordon
This hold true for every state that charges sales tax. If you are in CA and hsve one local warehouse that you ship from, it is dead simple: You charge tax in CA and no tax anywhere else. The mail order computer stuff companies have a more complicated situation. They have limited warehousing on

Re: Field Naming

2004-10-19 Thread Chris Peters
Oops. I meant ARTIST creates ARTWORK. If everyone wants to get all technical with relational database theory, a table name should be singular because it is an ENTITY. Most entities (tables) have relationships (foreign key linking) with other entities. These relationships can be thought

RE: Dreamweaver Autocomplete

2004-10-19 Thread Ewok
Well I don’t THINK I am, it just doesn't appear to be what I'm looking for. Like I said, if I typed cfquery and a space in CFStudio, it would autocomplete with ALL of the following. cfquery name= datasource=#request.maindsn# /cfquery And put the cursor between the quotes in the NAME

Re: Consume a web service with JavaScript...possible?

2004-10-19 Thread Dick Applebaum
Have a look at Rob Rohan's Neuromancer: http://rohanclan.com/products/neuromancer/ He wrote this for the specific purpose of consuming web services with Javascript. HTH Dick On Oct 19, 2004, at 10:15 AM, Scott Stroz wrote: Massimo, Thanx for the info, unfortuantely, most of the links on

RE: Using a form field name as part of the name of a session variable

2004-10-19 Thread Peterson, Andrew S.
Try this cfset session[qNum#form.qNum#] = form.answer PERFECT. I never would have figured that out on my own. I mean, there's not even a DOT after session. Thanks. Sincerely, Andrew -Original Message- From: Ewok [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 12:40 PM

RE: Dreamweaver Autocomplete

2004-10-19 Thread Ewok
Funny heh. Yeah, I defiantly miss that feature A LOT most of my sites have the same settings request.maindsn, request.imageroot, request.webroot, etc, etc... I had a ton of autocompletes set up for them like img spit back img #request.imageroot#/ alt= border=0 / and placed the cursor after the

Re: Dreamweaver Autocomplete

2004-10-19 Thread Spike
This may or may not be of interest to you, but you can do this in cfeclipse. You can specify a unique set of trigger characters for each snippet. If you type those characters followed by ctrl+i (or whatever custom shortcut you change that to) it will insert the full snippet with your cursor at

Re: Using a form field name as part of the name of a session variable

2004-10-19 Thread Chris Peters
This would also work (although it looks kinda strange): cfset session.qNum#form.qNum# = form.answer Try this cfset session[qNum#form.qNum#] = form.answer PERFECT. I never would have figured that out on my own. I mean, there's not even a DOT after session. Thanks. Sincerely, Andrew

Re: Drop-Ship Limitations to California

2004-10-19 Thread Dick Applebaum
If I understand what you are saying: 1) If the state I live in charges sales tax 2) and the drop-shipper has a warehouse in my state (or is licensed to do business in my state) 3) I get charged sales tax even though the the item is dropped-shipped from an out-of-state warehouse of the

Using Macromedia's DB/2 driver with Derby/Cloudscape?

2004-10-19 Thread Dick Applebaum
The Derby database is the Apache.org distro of IBM's Cloudscape database. Both use IBM's DB/2 Universal driver. I am trying to use the Macromedia-supplied driver for DB/2 in lieu of downloading the DB/2 Universal driver jars (Driver and License) from the IBM site. Is it possible to use the

Using Macromedia's DB/2 driver with Derby/Cloudscape?

2004-10-19 Thread Dick Applebaum
The Derby database is the Apache.org distro of IBM's Cloudscape database. Both use IBM's DB/2 Universal driver. I am trying to use the Macromedia-supplied driver for DB/2 in lieu of downloading the DB/2 Universal driver jars (Driver and License) from the IBM site. Is it possible to use the

RE: Using a form field name as part of the name of a session variable

2004-10-19 Thread Ewok
Actually that wouldn’t work. It would create the variable in the session scope. I don't think that's what he is after. He wanted to end up with a variable called qnum2, not session.qNum2 -Original Message- From: Chris Peters [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 2:08

Re: Dreamweaver Autocomplete

2004-10-19 Thread Massimo Foti
Ewok [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Well I don’t THINK I am, it just doesn't appear to be what I'm looking for. Like I said, if I typed cfquery and a space in CFStudio, it would autocomplete with ALL of the following. cfquery name= datasource=#request.maindsn#

Strange variable showing up...

2004-10-19 Thread Phillip Perry
In doing my banner rotation template I'm now getting an undefined error. The error itself is not whats made me confused. Its the Application variables list in the debugger thats got me confused. It refers to a variable called movierotation which does not exist in my code anywhere. I did a find 3

Re: Strange variable showing up...

2004-10-19 Thread Adrocknaphobia
Make sure you are defining a unique application name. Maybe there is another cf with the same application name that includes that variable. -Adam On Tue, 19 Oct 2004 14:40:42 -0400, Phillip Perry [EMAIL PROTECTED] wrote: In doing my banner rotation template I'm now getting an undefined error.

RE: Strange variable showing up...

2004-10-19 Thread John Stanley
you probably already tried this, but when you did the search did you check the box marked include subfolders? -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 2:41 PM To: CF-Talk Subject: Strange variable showing up... In doing my banner

Re: Strange variable showing up...

2004-10-19 Thread Ben Doom
Sounds like some other project is using the same application name. Try changing it to something else. --Ben Phillip Perry wrote: In doing my banner rotation template I'm now getting an undefined error. The error itself is not whats made me confused. Its the Application variables list in the

  1   2   >