Re: Element SYS is undefined in CLIENT
Please see the replies to your other thread on this same topic: http://forums.adobe.com/thread/1258206. -Carl V.
View ArticleCF10 - CFLoop with a File - Only read in first row
Hi, I'm trying to read the header row from a very large(83k) tab delmited file. I want to automate an upload to a temp table to append data, but I need to know the column headers to set up the table...
View ArticleRe: CF10 - CFLoop with a File - Only read in first row
Use CFLOOP and exit after the first row.
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
Help I was up all night goig back through this if anyone is willing to look please Private Message me and I will give you ftp access
View ArticleRe: CF10 - CFLoop with a File - Only read in first row
Is the file in a web-accessible location? If so, a quick way is to use CFHTTP to read the CSV directly into a ColdFusion query object. Then you can use that query object to populate your temp table....
View ArticleRe: CF10 - CFLoop with a File - Only read in first row
I'm trying not to read the entire file into memory. <cfloop index="line" file"file.txt" from="0" to="1"> #i#<br> </cfloop> This doesn't seem to work.
View ArticleRe: CF10 - CFLoop with a File - Only read in first row
83,000 rows is too much to loop over. That's why I want to grab the header row, dynamically build a SQL Statement to build a table(temporary one), then pass a BULK INSERT query to the SQL server to...
View ArticleRe: CF10 - CFLoop with a File - Only read in first row
wrong CFLOOP syntax - you want FILE= attribute. it will loop through the file one row one each pass, so if you exit the loop after the first row, all it will read is the first row. It definitely does...
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
Thanks P.SimThanks duncancumming
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
Last Question can I convert this site to Ver7.0?
View ArticleRe: CF10 and IIS 7.5 - cfheader in 404 custom error handler not working...
I tried the suggestion given in 3. martypaz using the code in a 404.cfm page with CF 10 and IIS 7 64bit and custom /404 page defined in IIS for the site. It works for a non-existent HTML or HTM page,...
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
I wasn't sure exactly when Application.cfc was introduced. But, definitely you need to include "datasource" attribute in all cfquery tag because this.datasource was introduced on CF9. And, perhaps you...
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
Sounds like it will be faster to move to a new host. I have ads out on the 1st I need the site up. What was the name of the hosting company you recommended? May GOD Bless you and yoursSam Samples...
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
hostek.com It's affordable, reliable, and helpful customer support.
View ArticleRe: Problem getting style option on CFREPORT tag to work.
Hi Dave - Did you create a report style called mystyle in your cfreport?I have added a style and modified it on the fly using the style option.
View ArticleRe: I can't find the error in my Application CFC however I am getting this on...
Thanks checking with them now May GOD Bless you and yoursSam Samples MBA., B.Sci., MCSE
View ArticleRe: CF10 and IIS 7.5 - cfheader in 404 custom error handler not working...
The latest ColdFusion 10 Update 11 seems to have addressed this bug finally: http://helpx.adobe.com/coldfusion/kb/coldfusion-10-update-11.html I have not tested though, since my workaround mentioned...
View ArticleColdFusion 10 mod_jk won't compile for Apache HTTPD 2.4.6
Making all in apache-2.0make[1]: Entering directory `/home/fds/wacfusion/src/connector-source/native/apache-2.0'/home/fds/wacfusion/apr/build-1/libtool --silent --mode=compile gcc -std=gnu99...
View ArticleRe: CF10 - CFLoop with a File - Only read in first row
SGroty wrote: I'm trying not to read the entire file into memory. <cfloop index="line" file"file.txt" from="0" to="1"> #i#<br> </cfloop> This doesn't seem...
View ArticleNumeric Data Input
Working on a form to input numeric data. I am using <cfform> and the <cfinput> tags. To help the user with data entry issues I want to show the user the comma format when their data...
View Article