RE: Problem with Studio 4.5.2 help

2001-04-23 Thread Kelly Matthews
I was having the same problem, that did the trick. Thanks! Kelly -Original Message- From: Christopher Cortes [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 11:48 PM To: CF-Talk Subject: RE: Problem with Studio 4.5.2 help Hubert, Studio has its own Verity collection that stores

Oh what a feeling

2001-04-23 Thread Parker, Kevin
This is purely conceptual. We've developed a little bit of an interest in tactile response mice. We think it might have some use in some training and education sections on web pages currently under development. I use a tactile response mouse at home and find it most interesting. Check out www.im

RE: CFTRY / CFCATCH questions

2001-04-23 Thread Christopher Olive, CIO
that's incorrect, actually. it will catch them in the order defined. so if there is an "ALL" first, there will never be any other. basically, it starts at the first CATCH, compares exception types. if it is a match, that handler occurs, if not, it examines the next one in order, ad nauseum, un

RE: Access/SQL/hosting question

2001-04-23 Thread Mike Brunt
Vernon, how many complaints are you getting from your current clients regarding poor performance (if any)? Also, are you able to check the CF Logs to see if there are indications of problem issues with Access or anything else for that matter. Kind Regards - Mike Brunt Macromedia Consulting Tel 5

RE: Access/SQL/hosting question

2001-04-23 Thread Christopher Cortes
Vernon, I would suggest trying out the dedicated machine prior to jumping into SQL Server unless you can get a good deal on a server package. It sounds like you understand your needs. There are also a few tweaks that you can do with access database to improve performance. You won't see SQL Server

Access/SQL/hosting question

2001-04-23 Thread Vernon Horn
I'd appreciate any and all advice and comments on the following situation. I work for a non-profit membership association (translation, not a huge budget, but web stuff is getting to an important means of communication with the membership.) We've been running our web site on a shared server

RE: Problem with Studio 4.5.2 help

2001-04-23 Thread Christopher Cortes
Hubert, Studio has its own Verity collection that stores the ColdFusion indices. Renaming the directory where it is stored will trick Studio into recreating the collections. First close studio and then go to your ColdFusion Studio installation directory, maybe: "c:/program files/allaire/ColdFus

RE: CFTRY / CFCATCH questions

2001-04-23 Thread Christopher Cortes
Jeffry, Your last statement prior to the closing try needs to be a catch. If you are running multiple catches and you also want to catch all, the all statement needs to come last. - Chris Christopher Cortes |Coming Q3 2001: Consultant | Stonebridge T

Re: value of field not appear

2001-04-23 Thread Bryan LaPlante
try - Original Message - From: "Haryono ..." <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 23, 2001 9:04 PM Subject: value of field not appear > Hallo, > > Source code: > > value="#getdosen.image#"> > > > When i excute source code above in browser, valu

RE: Search Engine

2001-04-23 Thread Christopher Cortes
Derek, I have just recently begun working with Inktomi's Web Search. I am very pleased with it, look at 3com's implementation. We are tying it into a Spectra Site. - Chris Christopher Cortes |Coming Q3 2001: Consultant | Stonebridge Technologies, Inc

Re: Problem with Studio 4.5.2 help

2001-04-23 Thread Jennifer
At 08:06 PM 4/23/2001 -0400, you wrote: >Hi, > >While Studio 4.5.2 was indexing its help files for the first time, as a >result of a search I was trying to do, my computer froze. Now, whatever I >try to search for, I get the reply "No matches found" (even for words like >"form" and "template",

value of field not appear

2001-04-23 Thread Haryono ...
Hallo, Source code: When i excute source code above in browser, value of field image is not appear. why? If I use: #getdosen.image# value of "getdosen.image" is appear can you help me? ~~ Structure your ColdFusion code with Fusebox. Get t

RE: SQL INSERTS - return ID

2001-04-23 Thread Costas Piliotis
Uhm No. That's the easiest way, but you won't always get the last one inserted. If your page gets enough traffic, most inserts will work, but on occasion one person might see the other's work... If you use sql server, write a sproc with @@Identity returning to a variable... -Original Mess

Re: SQL INSERTS - return ID

2001-04-23 Thread Tony Schreiber
I think that if you do the query within a stored procedure, you'll be able to get the ID back out... > select max(id) as maxID from tablename > > - Original Message - > From: "Matt Eschenbaum" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Monday, April 23, 2001 6:36 PM

Problem with Studio 4.5.2 help

2001-04-23 Thread Hubert Earl
Hi, While Studio 4.5.2 was indexing its help files for the first time, as a result of a search I was trying to do, my computer froze. Now, whatever I try to search for, I get the reply "No matches found" (even for words like "form" and "template", which I tried to be absolutely sure about the

Re: CFTRY / CFCATCH questions

2001-04-23 Thread Bryan LaPlante
There are no requirements on the order of cfcatch statements that I'm aware of. - Original Message - From: "Jeffry Houser" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 23, 2001 6:45 PM Subject: CFTRY / CFCATCH questions > >I know that at least one CFCATC

Re: SQL INSERTS - return ID

2001-04-23 Thread Bryan LaPlante
select max(id) as maxID from tablename - Original Message - From: "Matt Eschenbaum" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 23, 2001 6:36 PM Subject: SQL INSERTS - return ID > Anyone know a trick to return the ID of a record just Inserted into a table?

RE: SQL INSERTS - return ID

2001-04-23 Thread Erik Yowell
Well, there's always the good old: SELECT MAX(ID) from MyTableName right after your insert... though there maybe a more efficient way of doing things, that I'm un-aware of... though, the above has worked for me on many occasions... Erik Yowell -Original Message- From: Matt Eschenbaum [

Re: can't use PreserveSingleQuotes() with arrays? bug?

2001-04-23 Thread Kym Kovan
Hi Mike, >can anyone else confirm this? Yes we have seen it as well. >Below is the code to replicate. Is there a problem with my code or is >this a bug in ColdFusion? > >---start > > > > INSERT INTO temp_dammit > (str) VALUES('#PreserveSingleQ

SQL INSERTS - return ID

2001-04-23 Thread Matt Eschenbaum
Anyone know a trick to return the ID of a record just Inserted into a table? Sincerely, Matthew M. Eschenbaum Allaire Certified Professional DevTech Inc. [EMAIL PROTECTED] 206.956.0888 www.dev-tech.com ~~ Structure your ColdFusion code with Fu

Re: How do i set up a Java CFX tag.

2001-04-23 Thread Jon Hall
Nope, Java is Java, it needs an interpreter to do anything. All Java programs are compiled into bytecode, that's why theorhetically you can take that cfx that you have and install it on a *nix machine as long as the jvm is installed. jon - Original Message - From: "Jeffry Houser" <[EMAIL

what does this mean...

2001-04-23 Thread Jay Patton
Error Diagnostic Information Just in time compilation error unknown parser error The last successfully parsed CFML construct was the CFML template beginning occupying document position (1:1) to (1:1). The specific sequence of files included or processed is: D:\64.224.42.213\PHOTOGRAPHS\INDE

OT: Search Engine

2001-04-23 Thread Derek Hamilton
I was wondering if anyone has had a good experience with any search engine software for the Win2000 environment. We currently run Phantom on a MAC but that is dying a very quick death. TIA, Derek Hamilton Systems Developer ~~ Structure you

Re: problem with list box update

2001-04-23 Thread Marc Garrett
Thanks for your help Steven. Unless I misunderstand you, your code makes more sense for an insert page than an update page. What I want to do is populate the dropdown list on the update page with the value from the database. If the user updates other fields of the record but doesn't want the categ

Update on the Status of Harpoon & Private Beta 4 - 4/23/01

2001-04-23 Thread Gauri Gavankar
> All, > > Since many of you have been asking about the latest status of the Harpoon project, >here is a quick update from Macromedia. > > We are now completing final testing and documentation for the Harpoon project, now >named the Macromedia Flash Component Kit for Coldfusion. It will be ma

Re: How do i set up a Java CFX tag.

2001-04-23 Thread Jeffry Houser
Well, by definition a CFX tag is a DLL, correct? (I thought CFXs were binaries) You should only need a JVM to run a Java Applet. Java Applications are compiled down to assembler (or whatever) for the underlying operating system, not bit code for a Java Virtual Machine. When you have

RE: Session VS Client

2001-04-23 Thread Kevin Gilchrist
If performance is paramount and assuming that enough memory is available and depending on how much client var data an app would create, why not create a memory-resident database and use it to store client vars? You would have to flush regularly to disk but it might help performance if that's most

can't use PreserveSingleQuotes() with arrays? bug?

2001-04-23 Thread Mike Amburn
can anyone else confirm this? When I attempt to use the PreserveSingleQuotes() with an Array, i get the following error: Just in time compilation error Invalid parser construct found on ColdFusion was looking at the following text: [ Invalid expression format. The usual cause is an error in

RE: Oh that's just great.

2001-04-23 Thread Matt Rodosky
Go to fortas site. He has cf_debug there last I checked. http://www.forta.com/cf/tags/ -Original Message- From: Bryan LaPlante [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 1:50 PM To: CF-Talk Subject: Re: Oh that's just great. dude, go and get cf_avartree, it rocks - Orig

Re: UD+Harpoon

2001-04-23 Thread Massimo Foti
Never heard about it, I also just saw Harpoon at an Allaire seminar, but UD is totally extensible, a real open platform, so you don't need to wait for Macromedia to integrate almost any kind of technology into it. Massimo Foti [EMAIL PROTECTED] ---

Re: Crystal Reports - which version

2001-04-23 Thread Jeffry Houser
I believe the CFREPORT tag in ColdFusion 4.5 does not support any version of Crystal Reports newer than 7. (CF 5, does support CR 8, though) At 11:10 AM 04/23/2001 -0700, you wrote: >Planning on installing Crystal Reports to work with CF 4.5x. What is the >consensus on the best version - 8.

CFTRY / CFCATCH questions

2001-04-23 Thread Jeffry Houser
I know that at least one CFCATCH must be put inside a CFTRY block. How picky is CF on the order of the tags, though? for example: Some code First off, can you use an 'all' catch with other specialized catches defined? Would a database exception catc

RE: problem with list box update

2001-04-23 Thread Semrau, Steven L Mr SRA
Make your first selection blank You can then put any validation code you want (cfform validation, javascript, or what-have-ya) to ensure the user selects an option other then the first one, otherwise don't allow submission of the form. Steven Semrau SRA International, Inc. Senior Member, Profes

RE: SQL2000 server not recognized by CF 4.5

2001-04-23 Thread Dave Watts
> Have you reinstalled the MDAC since installing CF 4.5? If not, > pop the windows 2K CD in and run the upgrade and this will fix > the MDAC that gets broken when you install CF 4.5. If he's running SQL 2000, which requires MDAC 2.6, that's not a good idea, since the one on the Win2K CD is 2.5.

RE: Session VS Client

2001-04-23 Thread Dave Watts
> > Session variables are more robust, certainly (when stored in a > > database), but they're definitely quite a bit slower. > > I didn't know session vars were stored in a DB, I thought they were > only stored in memory. You're right, of course. I'm a bit woozy today. Sorry about that. I meant t

Re: Oh that's just great.

2001-04-23 Thread G
I assume you currently have debugging turned off. Why not turn debugging on, and set your IP as the only IP that will receive the debugging information. HTH Brian - Original Message - From: "Erika L Walker" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 23, 200

RE: UD+Harpoon

2001-04-23 Thread Dave Watts
> have any of you macromedia heads heard anything about a new > UltraDev or DW slated to come out w/harpoon it in? Harpoon doesn't have anything to do with Dreamweaver or UltraDev, really, although there's no reason that extensions for both can't be added to allow easier use of the Harpoon compo

RE: Session VS Client

2001-04-23 Thread Dave Watts
> :hmm: I did not know that. Does anyone know for a fact? I thought > CFID / CFTOKEN were typically stored as cookies? Although, I know > the values are doubled in the session scope along with a few others.\ Well, since they're used as a matching key, they have to be stored somewhere other than

Re: Oh that's just great.

2001-04-23 Thread pan
From: "Erika L Walker" <[EMAIL PROTECTED]> .. > > HELP! Does anybody out there have a debugging tag? Or let me know what the > quick method is of outputting all the wonderful things we see at the bottom > of the pages when we have debugging turned on? > > This may not be anything more than a sli

RE: Oh that's just great.

2001-04-23 Thread Howarth, Craig (IBK-NY)
Someone posted this a while back. So useful that it is now a permanent CF Studio snippet. It doesn't lock, so it should only be used while debugging. #ucase(struct)#: #var#:

Session variables

2001-04-23 Thread Joshua Meekhof
I would like to figure out the deep dark implementation details of cold fusion sessions. Is there any way I can "back into" it? i.e. Can you reference a session variable as a hidden application variable? I am trying to do something to an Application variable, based upon the expiration of a sessi

RE: Oh that's just great.

2001-04-23 Thread Semrau, Steven L Mr SRA
If you are looking for just the query debug output, add the word debug as the last item in the cfquery tag. Depending on the Administrator settings for debug, you could just add to the top of the CF template page: Steven Semrau SRA International, Inc. Senior Member, Professional Staff [E

RE: populating the query result to IFRAME

2001-04-23 Thread paul .
well I do get an error saying " style is not an object" guys please help -paul -- On Mon, 23 Apr 2001 17:29:59 Darren Adams wrote: >One really obvious point but there is a ")" missing. > >-Original Message- >From: paul . [mailto:[EMAIL PROTECTED]] >Sent: 23 April 2001 17:11 >To: CF-T

Re: Oh that's just great.

2001-04-23 Thread Bryan LaPlante
dude, go and get cf_avartree, it rocks - Original Message - From: "Erika L Walker" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 23, 2001 1:56 PM Subject: Oh that's just great. > I just downloaded a tag from the Tag Gallery called CF_Debugthat I > wanted

Re: How do i set up a Java CFX tag.

2001-04-23 Thread Jon Hall
Go here and download the jvm. Install is painless. http://java.sun.com/j2se/1.3/jre/download-windows.html jon - Original Message - From: "Rick Lamb" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 23, 2001 1:11 PM Subject: How do i set up a Java CFX tag. > I n

RE: Session VS Client

2001-04-23 Thread Benjamin S. Rogers
> As Dave points out, most people are aware of how important query caching is, > but many of those same people use client variables, without a need for > storing information from session to session or supporting a clustered > environment, thereby creating a tremendous amount of database traffic.

Re: statement help...

2001-04-23 Thread Dave f
Not too sure of format off the top of my head, but you it looks like you need something like To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 23, 2001 1:45 PM Subject: Re: statement help... > I know there is more than one because i am looking in that specific table > and see 12 (at least)

Re: How do i set up a Java CFX tag.

2001-04-23 Thread dave fauth
Download the JRE (Java Runtime Environment) or you can download JDK (java development kit) from sun (java.sun.com). http://java.sun.com/j2se/1.3/jre/ Install on the server. In CF administrator, Under Server/Java, put in path the jvm.dll. Check load JVM when starting CF. Under CFX Jar path, pu

RE: How do i set up a Java CFX tag.

2001-04-23 Thread Dylan Bromby
go to www.sun.com and download the Java SDK or JRE. install it. -Original Message- From: Rick Lamb [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 10:11 AM To: CF-Talk Subject: How do i set up a Java CFX tag. I need to use a cfx tag written in java and am not sure how to set it

Re: SQL2000 server not recognized by CF 4.5

2001-04-23 Thread Sean Daniels
On 4/23/01 1:52 PM David Baskin wrote: > I'm hoping someone can help with a problem i cannot figure out. i have a new > box with Win2K, CF 4.5, and SQL2000. Installed everything this weekend > without problems, but now i cannot get SQL and CF to play together. i try to > set up the ODBC and my co

RE: Session VS Client

2001-04-23 Thread Dylan Bromby
as i replied to dave, i use database caching and it's great. i use client vars to maintain state when users connect to certain applications because if CF restarts itself, it will kill any open session vars. if CF had a way of maintaining this better, i would love to store them in memory (sessions

RE: Form Field OnChange Problem with Cf

2001-04-23 Thread Larry Juncker
Thanks Don; That was what I was afraid of. I did come up with a fix though, so I have it working now. Good ol' CFMAIL and JS Larry Juncker Senior Cold Fusion Developer Heartland Communications Group, Inc. -Original Message- From: Don Vawter [mailto:[EMAIL PROTECTED]] Sent: Monday, Ap

UD+Harpoon

2001-04-23 Thread savan . thongvanh
have any of you macromedia heads heard anything about a new UltraDev or DW slated to come out w/harpoon it in? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://w

Re: Offline forms

2001-04-23 Thread Jim McAtee
What's the target audience and target platform? You could write a dedicated application in C++ or VB for Windows that could do this. Depends on whether the folks filling out the forms will trust you and trust downloading an EXE to their PC. Also depends on whether covering only the PC/Win platf

Re: [OT] Stats pkg for Win2K IIS

2001-04-23 Thread Tony Schreiber
Webalizer is free and is very fast. Needs to be scheduled to run though, but works incrementally. http://www.mrunix.net/webalizer/ Here's a binary for Win32, though I've never used it: http://www.medasys-lille.com/webalizer/ > We use Statistics Server as well. If we were only analyzing our ow

problem with list box update

2001-04-23 Thread Marc Garrett
I have an update page on which I need to show "user friendly" terms in a select box, even though the information in the table is actually a code number (e.g., the info is saved as "010-000" but the user should see "services.") The value from the select is then passed to a CFUPDATE on the follow

RE: Search Engines

2001-04-23 Thread Russ Conway
Check out selfpromotion.com. It's a good starting point and free to use at first. If you like it, I think they ask for $10 to continue using the service. Russell Conway HallofSports.com, Inc. 351 West 22nd Street New York, NY 10011 P (646) 638-2500 F (561) 423-2674 http://www.hallofsports.com ..

RE: Session VS Client

2001-04-23 Thread Jeffry Houser
:hmm: I did not know that. Does anyone know for a fact? I thought CFID / CFTOKEN were typically stored as cookies? Although, I know the values are doubled in the session scope along with a few others. At 01:39 PM 04/23/2001 -0400, you wrote: >actually, I believe the cfid and cftoken are

Re: SQL2000 server not recognized by CF 4.5

2001-04-23 Thread Jose Alberto Guerra Ugalde
Sometimes the default client configuration for the connection to the SQL Server is set to use NTBEUI instead TCPIP and you cannot establish the connection, go to Start/Programs/SQL Server/Client Configuration and there you can change this Regards - Original Message - From: "David Baskin"

RE: SQL2000 server not recognized by CF 4.5

2001-04-23 Thread Bob Silverberg
Under the SQL Server menu, look at both the Server Network Utility and Client Network Utility. These both need to be configured to use the same protocol(s), so the CF client can talk to the SQL Server. We configure ours to used TCP/IP only for both client and server. Bob -Original Message-

Oh that's just great.

2001-04-23 Thread Erika L Walker
I just downloaded a tag from the Tag Gallery called CF_Debugthat I wanted to throw up on one of my hosted sites so that I could get some quick debugging info... Of course I unzipped it and it doesn't contain the Debugging tag, it's got some silly find and replace JS function. HELP! Does

RE: CFML not being executed

2001-04-23 Thread Daniel H
Duane: I am not sure if you found your reason why email was not working.. but this may help. I was dumbfounded as to why some but not all of my client's tags were not working. I checked and modified the time out - verified the mail server properties... Checked to be sure all the IIS setting wer

RE: Search Engines

2001-04-23 Thread Mark W. Breneman
One site I have found is www.addme.com they have a lot of free info about how to get better standings and they submit to lots of engines. >From what I understand, some search engines may demerit you if you use a program or site. Don't know of any proof of this Anyone? Mark W. Breneman -Cold

RE: Search Engines

2001-04-23 Thread John Lucas
www.jimtools.com -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 12:52 PM To: CF-Talk Subject:Search Engines Out of curiosity, what program is most popular when submitting website information to search engines? I have come

RE: Session VS Client

2001-04-23 Thread Benjamin S. Rogers
> > Session variables are more robust, certainly (when stored in a database), > > but they're definitely quite a bit slower. > I didn't know session vars were stored in a DB, I thought they were only > stored in memory. I think Dave slipped up here. :) Client variables are generally more robust

RE: Session VS Client

2001-04-23 Thread Bob Silverberg
I couldn't agree more. Did you know that if you have client variables turned on CF will generate two select statements for every single page hit? And, if you don't turn off global client variable updates (which are turned on by default), you also generate an INSERT/UPDATE statement for every page

Crystal Reports - which version

2001-04-23 Thread Richard Colman
Planning on installing Crystal Reports to work with CF 4.5x. What is the consensus on the best version - 8.5 or earlier? TNX for any advice. Richard Colman ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusi

Re: [OT] Stats pkg for Win2K IIS

2001-04-23 Thread Jim McAtee
We use Statistics Server as well. If we were only analyzing our own site traffic and had the $$$ we'd switch to Urchin (http://www.urchin.com). It's a bit expensive for a small web host with a few dozen sites. A sample of their report interface: http://www.hollywoodweb.com/report/english/ Jim

How do i set up a Java CFX tag.

2001-04-23 Thread Rick Lamb
I need to use a cfx tag written in java and am not sure how to set it up. Do I need to install a Java Virtual Machine on the server? Any thing else required? The error I get now is asking me to set up a JVM on the server. How do I do this. Can someone help me get started? Thanks, Rick ~~~

RE: session vs client

2001-04-23 Thread Benjamin S. Rogers
We've been switching all of our applications from Session to Client variables even though most of our applications do not run in clustered environments. We've just had too many problems with the way in which ColdFusion handles data stored in shared resources such as memory. Although religious use

Re: Form Field OnChange Problem with Cf

2001-04-23 Thread Don Vawter
Your onChange function operates clientside after coldfusion is done with the page. You can't set a coldfusion variable because cf is not in the picture at this point. - Original Message - From: "Larry Juncker" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, April 23, 2

RE: Session VS Client

2001-04-23 Thread Dylan Bromby
i have one table with 3.2 million rows that gets accessed approximately 6,000-7,000 times a day. i should put that in the registry? your comment VERY MUCH depends on the kind of "app" you're talking about. ok so IIS stores info there. ms office stores info there. but we're talking about web-based

RE: Offline forms

2001-04-23 Thread Eric Dawson
pdf form maybe. post to web server for processing. From: Terry Bader <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> Subject: RE: Offline forms Date: Mon, 23 Apr 2001 10:41:06 -0400 that wont work because the person is working offline, thusly no CF server to proc

Re: Session VS Client

2001-04-23 Thread Gregory Harris
My 2 cents worth (gawd it's been awhile since I've posted to this list) Client Variables: When set: Stored to Registry after briefly being held in RAM When got: Gotten from Registry and (briefly) stored to RAM before sent to user Anything before going to the Hard Drive would have at least a bri

Search Engines

2001-04-23 Thread Adkins, Randy
Out of curiosity, what program is most popular when submitting website information to search engines? I have come across a few, or does anyone know any such animal which is free to use or a very minimal charge? Thanks in advance! ~~ Structure yo

SQL2000 server not recognized by CF 4.5

2001-04-23 Thread David Baskin
I'm hoping someone can help with a problem i cannot figure out. i have a new box with Win2K, CF 4.5, and SQL2000. Installed everything this weekend without problems, but now i cannot get SQL and CF to play together. i try to set up the ODBC and my connection fails every time. the base SQL server t

RSVP reminder

2001-04-23 Thread Bryan LaPlante
Just a quick reminder. If you haven't already registered for the Ben Forta meeting this Wednesday in Kansas City, go to http://www.kcfusion.org/ and RSVP for the meeting. All of the information for the meeting is there. Thanks Bryan LaPlante 816-347-8220 [EMAIL PROTECTED] http://www.netwebapps.c

RE: Session VS Client

2001-04-23 Thread Dylan Bromby
Maybe there's no difference in the performance of your applications, but I've often seen the move from session to client variables (usually in preparation for clustering) slow down applications significantly. If you store enough data in the Session scope, it's not practical to just move that data

Re: statement help...

2001-04-23 Thread Jay Patton
I know there is more than one because i am looking in that specific table and see 12 (at least) records that should be returned. SELECT * FROM RodeoManager WHERE CircuitID = #url.CircuitID# SELECT SUM(AdjPoints) as totalPoints, ContestantID FROM ResultsManager WHERE RodeoID = #getRodeos.Rodeo

RE: Session VS Client

2001-04-23 Thread Simon Horwith
actually, I believe the cfid and cftoken are stored in memory, even with client variables. ~Simon Simon Horwith Macromedia Certified Instructor Certified ColdFusion Developer Fig Leaf Software 1400 16th St NW, # 500 Washington DC 20036 202.797.6570 (direct line) www.figleaf.com -Original

RE: Session VS Client

2001-04-23 Thread Dave Watts
> Can you explain why storing Client vars in the registry is less > efficient than storing session vars in RAM? Storing Client variables in anything but cookies is less efficient than storing session variables in RAM. It's simply faster to get something out of the memory owned by a process than i

RE: statement help...

2001-04-23 Thread Christopher Olive, CIO
are you only outputting one? as in, do you have QUERY specified in the CFOUTPUT tag? or does your debug show only one returned? chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Monday

RE: JS-question-> transferring text from one template to another

2001-04-23 Thread Christopher Olive, CIO
take a look at irt.org and thier JS faq. there are TONS of code snippets there. chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, April 23, 2001 12:31 PM To: CF-Talk Subj

RE: Session VS Client

2001-04-23 Thread Dave Watts
> Wouldn't haver thought it makes a difference. You either have > to put them in a db or the registrywhich is a db in itself! Calling the registry a database is technically accurate in the same way that you might call an LDAP server a database, but it's conversationally inaccurate. Typically

RE: Session VS Client

2001-04-23 Thread Jeffry Houser
I would classify DSNs as system data, not app data. I think what Simon was trying to get at was, the registry is not designed (or optimized) for RDBMS functionality. You do not want to use it to store excessive (or in my opinion, any) application data. At 05:48 PM 04/23/2001 +0100, you

RE: Session VS Client

2001-04-23 Thread Dave Watts
> the problem with session vars is if CF server restarts itself > (which can, sometimes, be a good thing) you lose the session. > i use client vars exclusively over session vars now (and cookies > too) and store them in a DB. not as fast as memory in *theory*, > but in practice it's more relia

RE: Session VS Client

2001-04-23 Thread Jeffry Houser
Accessing RAM is quicker than accessing the hard drive. The registry is located on the hard drive. At 05:32 PM 04/23/2001 +0100, you wrote: >Can you explain why storing Client vars in the registry is less efficient >thatn storing session vars in RAM? > >

RE: statement help...

2001-04-23 Thread Andy Ewings
Have you tried running this code directly at the db?...i.e. if SQL run in query analyser. One thing you could try is put trim statements around the fied (or LTRIM and RTRIM if you are using SQL). i.e: SELECT * FROM RodeoManager WHERE TRIM(CircuitID) = #TRIM(url.CircuitID)# OR: SELECT * FROM R

RE: session vs client

2001-04-23 Thread Andy Ewings
I agree, this seems to be a hazy area. I tend to use client vars even if it isn't a clustered environment. IMO I think that the only disadvantage of Client vars is you can't expire them as easy as you can with sesison vars, you have to go to the DB and clear the entry. However the fact that you

RE: Session VS Client

2001-04-23 Thread Simon Horwith
I've written plenty of applications, many of which store a wddx packet in a client variable. Can you imagine how large the registry would become, and how quickly, if I were to write wddx packets to it. The registry is designed to store windows system settings, not data of this type. ~Simon Sim

Re: Session VS Client

2001-04-23 Thread zac
Andy Ewings wrote: > I disagree. The registry has replaced .ini files. The registry is a > perfect repositry to store data for your app like DSN'S etc as ini files > used to. The key word here is "store". Yes it replaces .ini files but that doesn't mean that it is suited for multiple and fre

Form Field OnChange Problem with Cf

2001-04-23 Thread Larry Juncker
I have a form that the action for it goes to sendmail.exe I have an onChange function written that checks the value of document.formName.Full_Name.value If I set an to say ("Full Name =" + FullName); I get the alert telling me that the field has changed. What I would like to do is set a Cold F

Re: [OT] Stats pkg for Win2K IIS

2001-04-23 Thread WebMaster
We use Statistics Server by Mediahouse (http://www.mediahouse.com) which has real-time access, so there's no need to schedule anything. You can set different user-level access to certain reports and schedule reports to be emailed on a daily, weekly or monthly basis. Overall, we've been very h

RE: JS-question-> transferring text from one template to another

2001-04-23 Thread Terry Bader
something like: opener.parent_form.inputfield.value = document.child_form.inputfield.value; but if you reload the data is not submitted and thusly it comes back as a reset form... so you will need to submit it... opener.parent_form.submit(); //this will reload the parent page: opener.location

Re: Session VS Client

2001-04-23 Thread Jeffry Houser
Client variables are stored in: The Registry (not recommended) A Datasource as cookies Therefore, they use 0 RAM, zilch, nada, nothing. Session variables are stored in RAM. Since any amount of RAM is bigger than no amount of RAM, I would say that session variabl

Re: CFSCRIPT Challenged ??

2001-04-23 Thread Gerry Pauline
David / All: Thank you David, that certainity cured the array offset problem -- I should be a little more careful when cutting & pasting code, would also help if I proofed it better (but for the life of me, I just didn't see the increment). The CFSCRIPT code executes without error now, but I sti

Re: statement help...

2001-04-23 Thread Dave f
How do you know there are 12-ish if you only see 1?? Are you saying that getRodeos.RecordCount = 1, or have you maybe forgotten to specify queryname in cfoutput loop? Dave - Original Message - From: "Jay Patton" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday

RE: statement help...

2001-04-23 Thread Diana Nichols
Perhaps the problem lies in the outputwhat does that code look like? * Diana Nichols Webmistress http://www.lavenderthreads.com 770.434.7374 "One man's magic is another man's engineering." ---Lazarus Long -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sen

RE: Is CF still relevant?

2001-04-23 Thread Jeffry Houser
It's been a while since I've done any Java programming and I don't claim to be an expert, but the most common browsers (IE / Navigator) have a Java Virtual Machine in them. An applet runs in the browser and has nothing to do with CF, ASP, JSP, or PHP. You don't need any of those technolog

re: session vs client

2001-04-23 Thread Mark Smyth
hi They appears to be differing opinions to this? I have heard many people recommend the use of client variables over session variables, regardless of whether they are hosted in a clustered envoironment. Are there specific times when session variables are better to use than client variables, and

  1   2   >