Try placing a CFLOCK around any code that sets a session variable. I have seen a variety of issues occur when this is not done. Start with this and see if it fixes your issue.
If you haven't already figured this one out, Ben Nadel offers a possible solution for Coldfusion handling the CSV file: http://www.bennadel.com/index.cfm?dax=blog:498.view
He shows how to load a CSV file into a CF array, then you could load data directly to Oracle thru CF (and not mess with...
Have you tried clearing your browser cache? Perhaps it is not a coldfusin issue, but rather that your browser has that page cached locally? Make sure your browser is set to look for new versions of the page on every visit.
Here is article that gives some steps on how to do this (in IE)...
You might try posting this thread in a SQL forum and have better luck. But if I am understanding what you need this might work for you...First, you need a function that can find the "nth" occurrance of a charcter(s). See below. Once you have that function you can update the table(s) affected...
Yes, it is true. My point is that Coldfusion won't parse it. I never commented on IIS/Apache parsing capabilities. I just wanted to ensure it was clear coldfusion can't do this.
From the Comments section:
"I try it, it works. Another question, instead of this...
The link posted by DigitalRedneck is a good example of how to do something similar to what you are wanting. But as Ray's blog demonstates you need the .cfm file in the URL (or coldfusion won't parse it).
Sounds like you are on the right track. Typically I don't worry too much about coldfusion pages unless they run over 2000 ms (2 seconds).
CF8 (even the developer edition) has a great new tool for watching server/query performance. Take a look at the features of the Server Monitor, might be...
If I am correctly understanding what you want to do, I have done something similar before.
I allowed users to upload files to an intranet site. During the upload process (after the file succuessfully loaded) I inserted a DB record linking the file to a key in a table. Then to access their...
Kind of lost me with the description. However, if you want to submit multiple forms with one button, an easy way would be to create hidden fields in one of the forms. When the user clicks the submit button run javascript to copy data from other forms to the hidden fields, then proceed with...
Check out CFPRINT tag (new to CF8). However, your source file must be a PDF. http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Part_3_CFML_Ref_1.html
What you are doing is fine. However, not sure about the "neq" condition you have. I would use this instead...
<cfif form.pocFirstname is form.expertFirstname and form.pocLastname is form.expertLastname>
<!--- POC and Expert are the same person so I can use poc (or expert) form entry for the...
This should work...
If you select a value not in "TheList" (17 or 18) it will hide the ID else it will show the ID.
<cfset request.TheList = '13,14,15,16'>
<script type="text/javascript">
function show(){
var stringToSplit = '<cfoutput>#request.TheList#</cfoutput>';
var arrayOfStrings...
BACKGROUND:
I have a CF process which allows users to upload files to my web server. Then view the files thru Internet Explorer. My process accepts .DOC,.XLS,.TXT,.PDF. It works great on windows server but my site is now moving to a suse linux server.
PROBLEM:
The upload process still works...
Maybe, and that is my original question. However, if you run the queries below in SQL Server (version 2000) you get 24 hour difference.
SELECT DATEDIFF(hh,'2006-10-28 15:00:00.000','2006-10-29 15:00:00.000') AS difference
SELECT DATEDIFF(hh,'2007-03-10 15:00:00.000','2007-03-11 15:00:00.000')...
I am not too familiar with JVM 1.4.2-b28 is that more recent than 1.4.2_11?
If not, than your JVM still thinks day light savings is the first Sunday in April. This no longer true. Begining this year Day Light savings is now the 2nd Sunday in March. According to Adobe, JVM 1.4.2_11 and...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.