application testing

2004-08-31 Thread john_chase
Hello, It's been awhile since I've posted but this seems like a good time to = get some expert opinions.=20 I have been tasked with evaluating application testing software and = would like to get an idea what other CF developer's use. I'm primarily = interested in static, functional and

Re: CFQuery

2004-08-31 Thread Douglas Knudsen
it does require debug to be on though for sure, not a good thing for production systems, eh?try the long hand way cfset variables.sql = select foo from goo / cfquery #PreserveSingleQuotes(varaibles.sql)# /cfquery of course you may need to name your sql var different for multiple queries. Doug

Re: database connections

2004-08-31 Thread Douglas Knudsen
there is a timeout setting in the CFADMIN tool for this.I'd guess turning off teh 'maintain connections' should kill each connection after the timeout, maybe before I can't recall.ah...the docs have Timeout (min) The maximum number of minutes after the data source connection is made that you

Re: CHR in ASP and CFMX

2004-08-31 Thread Robert Everland III
So how do we change the charset in ColdFusion, I found out how to change it in ASP. I have tried a meta tag in HTML, but that didn't change the output. Bob Robert Everland III wrote: When I do a CHR() in ASP and a CHR() in CFMX they come up with 2 different values. Is there any way to

Re: CFHTTP and replace() on Multiple Lines

2004-08-31 Thread Josen Ruiseco
Where a single search doesn't work, I usually revert to finding the start index 'start = find(td width=1, myStr)' and then the end index 'end = find(/td, myStr, start) + 4' and then do a mid(myStr, start, end) call to pull it out.You may have to tweak that a little, but that's the idea. cheers,

Re: CHR in ASP and CFMX

2004-08-31 Thread Jochem van Dieten
Robert Everland III wrote: So how do we change the charset in ColdFusion, I found out how to change it in ASP. You can give each template a Byte Order Mark, or you can use cfprocessingdirective on each page. I have tried a meta tag in HTML, but that didn't change the output. That only

RE: Second Pair Of Eyes

2004-08-31 Thread Pascal Peters
Not in CF5. That is where the problem was. Pascal -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 31 August 2004 18:40 To: CF-Talk Subject: [Spam?] RE: Second Pair Of Eyes Arguments is an array rather than a structure If I recall correctly, the Arguments

RE: Second Pair Of Eyes

2004-08-31 Thread S . Isaac Dealey
Arguments is an array rather than a structure If I recall correctly, the Arguments object is exposed as both an array and a structure. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 On MX you're right, although the original question was

RE: CFQuery

2004-08-31 Thread Frank Dewey
Hello all, In my page, clicking on a name brings up another window where you can edit their information (their address is shown below their name).The addressID for each address is also stored in a variable (addressIDList). Clicking on a button gets the the current information from the database

CF - Javascript variables

2004-08-31 Thread Frank Dewey
Wrong subject From: Frank Dewey [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 1:10 PM To: CF-Talk Subject: RE: CFQuery Hello all, In my page, clicking on a name brings up another window where you can edit their information (their address is shown

Concatenate 2 binary variables

2004-08-31 Thread Neculai Macarie
Hi! Is there a way to concatenate 2 binary variables (that contain 2 files): cffile action="" file=#ExpandPath('.')#/file2.bin variable=file1 cffile action="" file=#ExpandPath('.')#/file1.bin variable=file2 I want to have a single variable, something like this: cfset filesData = file1 file2

RE: redirect after cfheader/cfcontent

2004-08-31 Thread Dave Watts
I've been meaning to ask for awhile, but how much overhead does CFCONTENT create if you are serving a 1MB file? Howabout a 10MB file? Does the CF server actually handle the file, or does it just provide a pointer to the local file? I believe that the request is handled entirely by the web

RE: Credit card page processing before error check

2004-08-31 Thread Dave Watts
I'm so sorry, but I'm pulling my hair out on this _javascript_ issue and I can't get any help. I have this credit card code that checks values.The code throws an alert error, but when I click ok on the alert popup, the page process instead of allowing me to fix the error and process it

Re: Web service method with an argument of type Base64

2004-08-31 Thread Neculai Macarie
You sure its not a problem on the other side? I use the getbytes function regularly as well as other function that return btye arrays like Gzip. This infommation is used with external applications and Amazon. If it was buggy I wouldn't imagine it would be working. Adam H The problem was on

RE: Credit card page processing before error check

2004-08-31 Thread Ewok
This bit is always gonna return true, maybe that’s the problem… if (!this.isExpiryDate()) return false; return true; also try checkit();return false;” --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.745 / Virus Database:

Re: CHR in ASP and CFMX

2004-08-31 Thread Robert Everland III
I found in order to code ColdFusion correctly I had to do this: cfcontent type=text/html; charset=ISO-8859-1 And in ASP I did this %response.Charset=ISO-8859-1% I was then able to encrypt a string, urlencode it, then pass it to ASP and ASP could then use RC4 to decrypt that string. Bob [Todays

Proc output params with CFMX 6.1

2004-08-31 Thread Alisa Thomson
I am runnig CFMX6.1 on Solaris and I have a stored procedure that has one input parameter and one output parameter.When I use the Sybase driver that ships with CFMX, I get the following error when I try to execute the proc: Error Executing Database Query. [Macromedia][Sybase JDBC Driver]The

RE: CFQuery

2004-08-31 Thread Christian Watt
Yes, you are correct, but the requesting IPAddress has to be in the debugging IP Addresses.otherwise IsDebugMode returns false.This brings up an interesting question though, if my ip is not in the list then I don't get debug information and debug mode is turned off, so why is debugging being

Re: CFQuery

2004-08-31 Thread Douglas Knudsen
so why is debugging being enabled on a production machine bad? it takes up valuable time slices:) Doug - Original Message - From: Christian Watt [EMAIL PROTECTED] Date: Tue, 31 Aug 2004 13:34:52 -0500 Subject: RE: CFQuery To: CF-Talk [EMAIL PROTECTED] Yes, you are correct, but the

Cfquery Blockfactor and Oracle9i

2004-08-31 Thread djones
I have been reading in many places to increase performance, increate the BLOCKFACTOR of queries to 100.If I have a query that generally returns 5 rows should a blockfactor of 100 benefit, hurt, or not affect performance. I have tried using the blockfactor in the past by going through the app and

RE: CFQuery

2004-08-31 Thread S . Isaac Dealey
Yes, you are correct, but the requesting IPAddress has to be in the debugging IP Addresses.otherwise IsDebugMode returns false.This brings up an interesting question though, if my ip is not in the list then I don't get debug information and debug mode is turned off, so why is debugging

Re: galleon

2004-08-31 Thread Raymond Camden
Peter, Yeah, that is my plan. That is the technique my blog uses (although I switched to UUIDs to handle that). It's not really a huge change, just something I have to find time for. If there are a lot of you guys out there dieing for this, and want it officially from me, ping me offlist and I'll

component browser on windows 2003 and CFMX 6.1

2004-08-31 Thread a k
We are having issues with our component browser in coldfusion administrator. Current configuration : Windows server 2003 and CFMX 6.1 with apache. The component browser works fine on the stand alone windows 2000 professional with or with out apace/IIS. Either it keeps trying to open repeatedly

Book Recomendations

2004-08-31 Thread Cutter (CF related)
I'm looking for a good book on integrating CF and Flash, specifically with heavy references to webservices. Anybody have any suggestions? Cutter [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Concatenate 2 binary variables

2004-08-31 Thread Marc Campeau
Is there a way to concatenate 2 binary variables (that contain 2 files): cffile action="" file=#ExpandPath('.')#/file2.bin variable=file1 cffile action="" file=#ExpandPath('.')#/file1.bin variable=file2 You'll probably want to use some Java (look at java.io.fileInputStream) to do that since

Re: Concatenate 2 binary variables

2004-08-31 Thread Jochem van Dieten
Marc Campeau wrote: Is there a way to concatenate 2 binary variables (that contain 2 files): cffile action="" file=#ExpandPath('.')#/file2.bin variable=file1 cffile action="" file=#ExpandPath('.')#/file1.bin variable=file2 Otherwise, maybe you can convert both files to Base64, do the

Re: Concatenate 2 binary variables

2004-08-31 Thread Ben Doom
It occurs to me that you could use the system to concatenate two files, then read them as binary. ie you could copy file1+file2 file3 /b and then read file3. --Ben Neculai Macarie wrote: Hi! Is there a way to concatenate 2 binary variables (that contain 2 files): cffile action=""

CFXM 6.1 Updater 1 comments?

2004-08-31 Thread DeMarco, Alex
Anyone try this latest update?Any big issues? - Alex [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Concatenate 2 binary variables

2004-08-31 Thread Marc Campeau
That will only work if the first file has a size that is a multiple of 3 bytes. Thanks for the info Jochem! I guess that it's only doable using some CF add-ons like CFOBJECT then? -- Marc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and

RE: Cfquery Blockfactor and Oracle9i

2004-08-31 Thread Dave Watts
I have been reading in many places to increase performance, increate the BLOCKFACTOR of queries to 100.If I have a query that generally returns 5 rows should a blockfactor of 100 benefit, hurt, or not affect performance. I have tried using the blockfactor in the past by going through

RE: CFQuery

2004-08-31 Thread Dave Watts
This brings up an interesting question though, if my ip is not in the list then I don't get debug information and debug mode is turned off, so why is debugging being enabled on a production machine bad? My understanding is that simply gathering debug statistics incurs a performance penalty,

RE: Proc output params with CFMX 6.1

2004-08-31 Thread Dave Watts
I am runnig CFMX6.1 on Solaris and I have a stored procedure that has one input parameter and one output parameter.When I use the Sybase driver that ships with CFMX, I get the following error when I try to execute the proc: Error Executing Database Query. [Macromedia][Sybase JDBC

Re: CFQuery

2004-08-31 Thread Adam Haskell
If debugging is turned on in the admin debuging routines are ALWAYS run. IsDebugMode() returns for the specific instance weather YOU will see degubbing or not. Debuging from my expeince does use a good bit of processing time. However that asside somehow the debugging information is pulling the

Re: Book Recomendations

2004-08-31 Thread Chris Johnston
On Tue, 31 Aug 2004 15:58:45 -0400, Cutter (CF related) [EMAIL PROTECTED] wrote: I'm looking for a good book on integrating CF and Flash, specifically with heavy references to webservices. Anybody have any suggestions? Flash Remoting the definitive guide from O'Reilly is about the best book

Re: Concatenate 2 binary variables

2004-08-31 Thread Adam Haskell
This should do it: bos = createObject(java, java.io.ByteArrayOutputStream).init(); bos.write(binary_stuff,0,len(binary_stuff)); bos.write(ender,0,len(ender)); New_binary = bos.tobytearray(); bos.close(); Probably a better way with the fileinputstream but I already had this code so I figured I'd

RE: CFQuery

2004-08-31 Thread Mark A Kruger
If you are using CFMX you can get at the query information using the service factory.I posted a function on my blog (http://blog.mxconsulting.com). I'm sorry if someone has already mentioned this - it's been around for a while and resurfaces every few months. I think I originally got it from one

Re: CFXM 6.1 Updater 1 comments?

2004-08-31 Thread Adam Haskell
I have had no issues, though I have read a few poeple claiming to have issues, what about exactly I don't remeber sorry. I'll be putting on the production servers Tomarrow probably. Adam H On Tue, 31 Aug 2004 16:10:16 -0400, DeMarco, Alex [EMAIL PROTECTED] wrote: Anyone try this latest

RE: Book Recomendations

2004-08-31 Thread Dave Watts
I'm looking for a good book on integrating CF and Flash, specifically with heavy references to webservices. Anybody have any suggestions? The Flash Remoting book from O'Reilly that Chris Johnston mentions is very good. You might also take a look at Nate Weiss' Macromedia Flash MX

RE: CFXM 6.1 Updater 1 comments?

2004-08-31 Thread Paul Vernon
Just one issue for me in that the bug using CF admin over SSL seems to have been re-introduced I mentioned it on list and I've reported it to MM but no response from either! Paul [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and

Re: CFQuery

2004-08-31 Thread S . Isaac Dealey
so why is debugging being enabled on a production machine bad? it takes up valuable time slices:) Doug Personally I find time difficult to slice ... I can never seem to find a knife sharp enough to penetrate its fabric. :) s. isaac dealey954.927.5117 new epoch : isn't it time for a

Re: CFXM 6.1 Updater 1 comments?

2004-08-31 Thread Damien McKenna
On Aug 31, 2004, at 4:10 PM, DeMarco, Alex wrote: Anyone try this latest update?Any big issues? Works great here. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 Nothing endures but change. - Heraclitus [Todays Threads]

CFX Tag development in Visual C++.NET 2003?

2004-08-31 Thread Gregory Harris
Hi there, after a lengthy absence from the CF Community it looks like I'm back to developing CF Pages, and hence have my first question to CF-Talk in a few years probably. I need to develop a CFX tag that will work with ColdFusion 5.0.My C++ development is done in Visual Studio .NET 2003.Is

Re: CFXM 6.1 Updater 1 comments?

2004-08-31 Thread Sean Corfield
On Tue, 31 Aug 2004 21:44:13 +0100, Paul Vernon [EMAIL PROTECTED] wrote: Just one issue for me in that the bug using CF admin over SSL seems to have been re-introduced I mentioned it on list and I've reported it to MM but no response from either! I saw Damon (from MM) respond on one list

RE: CFQuery

2004-08-31 Thread Christian Watt
The way that Forta wrote a UDF though implies that you have to have debugging enable to use the service.factory.If this is not true, let me know please. Christian -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 3:37 PM To: CF-Talk

RE: CFQuery

2004-08-31 Thread Mark A Kruger
Ah.. is that dilemna - sorry, I misread. -Original Message- From: Christian Watt [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 3:55 PM To: CF-Talk Subject: RE: CFQuery The way that Forta wrote a UDF though implies that you have to have debugging enable to use the

ODBC vs JDBC sql syntax differences

2004-08-31 Thread Samuel R. Neff
Are there differences in SQL/functions when moving from an ODBC datasource to a JDBC datasource? We're hosting an application for another contractor and their app is the only one using ODBC (all apps use Oracle).We'd like to remove the ODBC services (well, we're setting up a brand new box and

OT Notebook recommendations

2004-08-31 Thread Victor Moore
Sorry for the OT, but I am looking for a new laptop and I was wondering if you guys have any preference or can make a recommendation. I was able to narrow it down to the following: Dell Inspiron 8600 Toshiba Tecra S1-QW6 Centrino 1.7GHz Notebook HP Pavilion ZT3380US Intel Centrino M 1.7GHz

RE: CFXM 6.1 Updater 1 comments?

2004-08-31 Thread Andrew Dixon
Hi. Have had it installed for 3 weeks (was a beta tester) on a development server with no issues.Have it installed on a W2k3 production server as well and it seems to have made a small improvement to the stability but it still have the JRun/W2k3 random crash restart issue. Will be installing in

RE: CFQuery

2004-08-31 Thread Ben Forta
If you are trying to pull it the way I did in that UDF, then yes, debugging must be on. I have not yet found a way to get this without debugging enabled. --- Ben _ From: Christian Watt [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 4:55 PM To: CF-Talk Subject: RE: CFQuery The

Re: OT Notebook recommendations

2004-08-31 Thread Damien McKenna
On Aug 31, 2004, at 5:02 PM, Victor Moore wrote: Sorry for the OT, but I am looking for a new laptop and I was wondering if you guys have any preference or can make a recommendation. Get the best thinkpad you can, they're built to last, unlike most others. -- Damien McKenna - Web Developer -

Re: ODBC vs JDBC sql syntax differences

2004-08-31 Thread Jochem van Dieten
Samuel R. Neff wrote: Are there differences in SQL/functions when moving from an ODBC datasource to a JDBC datasource? I know from theory there can be differences, but I have never encountered them. But ODBC and JDBC are not bug-compatible of course :) Jochem [Todays Threads] [This

Re: server-side forwarding in CFMS

2004-08-31 Thread Phil Cruz
getpagecontext.forward() doesn't seem to pass on form variables. Can anyone confirm this is in the bug base and has/has not been fixed with the most recent service pack. -Phil I successfully implemented the getpagecontext.forward() method in one of my applications and it worked great. The

RE: CFQuery

2004-08-31 Thread Christian Watt
Thanks Ben, that is what I was afraid of. Christian -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 4:09 PM To: CF-Talk Subject: RE: CFQuery If you are trying to pull it the way I did in that UDF, then yes, debugging must be on. I

Clustercats Vs Win2k Advanced Server

2004-08-31 Thread admin
Currently we have 3 production web servers all running CF5 (CFMX upgrade is not an option for us), different sites on each m/c. Each box services betwen 5 and 8 web sites. We don't run our own dns.What we would like to do is have all the m/c's look the same,and use either clustercats or win2k

fyi

2004-08-31 Thread Tangorre, Michael
Just wanted to let you know I'm leaving on time today, but will probably stay a little later tomorrow (til 7ish). The final thing left to do for the NDA stuff is to upload the executed doc, which will be done in the AM tomorrow. You asked that the output be sorted by DATE ISSUED. That is no

RE: CFXM 6.1 Updater 1 comments?

2004-08-31 Thread Paul Vernon
I saw Damon (from MM) respond on one list that the fix is just to copy navserver.cfm from a 6.1 install back into the updated 6.1 install since that's the only file affected. The thing is... it shouldn't have been re-introduced in the first place... If QA missed an already known bug, you

RE: OT Notebook recommendations

2004-08-31 Thread Andrew Dixon
Personally I would go for a Sony with an X-Black LCD screen. The displays are amazing compared to any other laptop I have seen and the Sony's look really nice as well, and they are no more expensive than other makes. In fact I purchased one recently and it worked out cheaper than the same Dell

RE: CFQuery

2004-08-31 Thread Christian Watt
Let me add to this one and see if anyone knows how to output the parameters passed to a stored proc as well.Without having debuggin enabled also. Christian -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 3:50 PM To: CF-Talk

Re: OT Notebook recommendations

2004-08-31 Thread Chris Johnston
On Tue, 31 Aug 2004 17:02:36 -0400, Victor Moore [EMAIL PROTECTED] wrote: Sorry for the OT, but I am looking for a new laptop and I was wondering if you guys have any preference or can make a recommendation. I was able to narrow it down to the following: Dell Inspiron 8600 Toshiba Tecra

Re: fyi

2004-08-31 Thread Ray Champagne
At 05:13 PM 8/31/2004, you wrote: Just wanted to let you know I'm leaving on time today, but will probably stay a little later tomorrow (til 7ish). The final thing left to do for the NDA stuff is to upload the executed doc, which will be done in the AM tomorrow. You asked that the output be

RE: Entire keyboard-based CF application

2004-08-31 Thread S . Isaac Dealey
There's an XForms option -- there's also a Flash option and a default option which creates the same html/_javascript_ forms cfform creates now. Or so I've heard. XForms is the replacement for current HTML forms - basically it's a separate W3C standard just for forms to go with XHTML 2.0. Hit

Re: ODBC vs JDBC sql syntax differences

2004-08-31 Thread S . Isaac Dealey
Are there differences in SQL/functions when moving from an ODBC datasource to a JDBC datasource? We're hosting an application for another contractor and their app is the only one using ODBC (all apps use Oracle).We'd like to remove the ODBC services (well, we're setting up a brand new box

RE: CFQuery

2004-08-31 Thread S . Isaac Dealey
Let me add to this one and see if anyone knows how to output the parameters passed to a stored proc as well.Without having debuggin enabled also. Use a function or custom tag to call all your stored procedures and store the arguments or attributes for later use. It would be pretty easy to

RE: Removing extensions from filelists

2004-08-31 Thread Mark Henderson
Thanks to both Pascal and Ewok (and pardon the delay in responding. I've been out of the office). I also I must've missed your response detailing regexpas a solution Pascal, but I'm looking it up now. Til then I'm using Ewoks solution since it seems to be working fine (no dots in filenames). I

Re: CF - Javascript variables

2004-08-31 Thread Patrick Whittingham
Can't you use the innerHTML instead? Pat div id=x /div script x.innerHTML=3432432432; /script - Original Message - From: Frank Dewey [EMAIL PROTECTED] Date: Tue, 31 Aug 2004 13:13:53 -0500 Subject: CF - _javascript_ variables To: CF-Talk [EMAIL PROTECTED] Wrong subject

RE: CF - Javascript variables

2004-08-31 Thread Frank Dewey
Thanx Patrick, I finaly got it to work: I put the CF variables in an INPUT type=text Then I used JS to get these values Regards - Frank From: Patrick Whittingham [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 31, 2004 6:45 PM To: CF-Talk Subject: Re:

For S.Isaak - onTap SES

2004-08-31 Thread Marco Antonio C. Santos
Hi S. Isaak it's possible to use OnTap framework works with SES procedures? Cheers [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Proc output params with CFMX 6.1

2004-08-31 Thread Alisa Thomson
That is probably what I will end up doing, but I have had other issues with that driver.I am just trying to decide which one has the fewest number of issues! I am runnig CFMX6.1 on Solaris and I have a stored procedure I'm not especially familiar with the DataDirect driver for Sybase, but if

Opening Common Intranet files

2004-08-31 Thread Mark Henderson
I'm not sure if this is possible (but I'm really hoping). Currently on our intranet (which is on an IP) there is one person who frequently accesses common word and excel files to update (for pricing and such) . Since they are MS products and we browse using IE, these files open inside IE, which is

RE: OT Notebook recommendations

2004-08-31 Thread Ewok
I’ve pretty happy with my Area51m from Alienware. My only complaint about it is that the internal wireless card blows (even for an internal wireless card), but a Linksys wusb54gp fixed that problem. Alienware support has also been better than great in my opinion. _ From: Victor Moore

Re: OT Notebook recommendations

2004-08-31 Thread Simeon Bateman
I used to be a huge supported of Dell laptops, they have received about 35 purchases based on my recomendations to clients and friends. However in the last year I have switched my support to ibm and the think pad.Much better laptops.better built in features and more rugged than the dells.The seem

RE: fyi

2004-08-31 Thread Michael T. Tangorre
Sorry everyone. No wonder my manager wondered why I left today. LOL Had a few email windows open and got typing in the wrong one. Please disregard. Mike [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: OT Notebook recommendations

2004-08-31 Thread Scott Stroz
I have had 3 Inspirons over the past few years (2 from work,a nd one personal) and I can't say enough about them. I love mine, which is an 8500. Just my $0.02. - Original Message - From: Victor Moore [EMAIL PROTECTED] Date: Tue, 31 Aug 2004 17:02:36 -0400 Subject: OT Notebook

RE: Removing extensions from filelists

2004-08-31 Thread Ewok
Well, you live in a perfect world if your encouragement works! I need to know your secret! In the event that it doesn’t work… cover it anyway… cfset FileName = some.dumb.file.exe cfset FileName = replace(replace(FileName, .#ListLast(FileName, '.')#, ), ., _, ALL) . ListLast(FileName, .)

Re: OT Notebook recommendations

2004-08-31 Thread Matthew Fusfield
I've been happy with my Gateway notebook as well as my Apple Powerbook. I can also recommend the IBM Thinkpad line; they are built really well but tend to be a bit more pricey. Matt On Tue, 31 Aug 2004 17:02:36 -0400, Victor Moore [EMAIL PROTECTED] wrote: Sorry for the OT, but I am looking for

Re: For S.Isaak - onTap SES

2004-08-31 Thread S . Isaac Dealey
Hi S. Isaak it's possible to use OnTap framework works with SES procedures? Cheers Likely... you're lucky, I almost missed this message 'cause I normally filter anything with isaac in it into my inbox (instead of my list-mail folder)... Anyway, yes, you'd want to apply your SES adaptation

RE: fyi

2004-08-31 Thread S . Isaac Dealey
Sorry everyone. No wonder my manager wondered why I left today. LOL Had a few email windows open and got typing in the wrong one. Please disregard. Mike Good thing that was a work-related email and not something intended for say... a fetish forum. :) s. isaac dealey954.927.5117 new

Re: ODBC vs JDBC sql syntax differences

2004-08-31 Thread Dave Carabetta
On Tue, 31 Aug 2004 17:00:34 -0400, Samuel R. Neff [EMAIL PROTECTED] wrote: Are there differences in SQL/functions when moving from an ODBC datasource to a JDBC datasource? We're hosting an application for another contractor and their app is the only one using ODBC (all apps use Oracle).We'd

Re: ODBC vs JDBC sql syntax differences

2004-08-31 Thread S . Isaac Dealey
And Isaac, I won't damn you. ;) Mighty kind of you Dave. :) Although ... I'm not sure about Oracle, but I know that with SQL Server you can (maybe not with all JDBC drivers, but I'm pretty sure I have with at least one) use more than one sql statement in a single cfquery without the semicolons.

Re: ODBC vs JDBC sql syntax differences

2004-08-31 Thread Dave Carabetta
On Tue, 31 Aug 2004 20:49:55 -0400, S. Isaac Dealey [EMAIL PROTECTED] wrote: And Isaac, I won't damn you. ;) Mighty kind of you Dave. :) Although ... I'm not sure about Oracle, but I know that with SQL Server you can (maybe not with all JDBC drivers, but I'm pretty sure I have with at

RE: Removing extensions from filelists

2004-08-31 Thread Ewok
* Your message is a reply to anothers post and is more than 100 lines of text. Unless you are a major writer, your probably adding a lot of the previous * replies. Please trim your posts when replying. Thank you. Well, you live in a perfect world if your encouragement works! I need to know

RE: Removing extensions from filelists

2004-08-31 Thread Mark Henderson
Ewok scribbled snip Well, you live in a perfect world if your encouragement works! I need to know your secret! /snip So noted and now covered ty -that was a very quick cold reminder that my perfect world is in fact as far from reality as yours (or thereabouts)! Regards MarkH [Todays Threads]

Unicode Problem

2004-08-31 Thread Jillian Koskie
I'm moving an application from CF 5 to CFMX... and I'm having a problem with some of my data. The database is PostgreSQL. How do I start tracking down the problem / fix it?Any tips? The error: Error Executing Database Query. Invalid character data was found. This is most likely caused by

Re: OT Notebook recommendations

2004-08-31 Thread Victor Moore
Yes, I have a Dell Inspiron 7500 and while I think it's a good laptop I need something more up to date. I was looking on some of the Dell forums and a lot of horror stories lately, both about th equality of the products and customer service. I had only one problem with my battery pack 2 months

Warning Page Expired problem

2004-08-31 Thread simmyana a
Hi, My client is facing 'Warning: Page Expired' problem when they click back button, i have put cfheader tag at the top of the page to cache it and it is working fine at my end, is there any other issues that need to be addressed?? thanks [Todays Threads] [This Message] [Subscription]

Re: Concatenate 2 binary variables

2004-08-31 Thread Neculai Macarie
This should do it: bos = createObject(java, java.io.ByteArrayOutputStream).init(); bos.write(binary_stuff,0,len(binary_stuff)); bos.write(ender,0,len(ender)); New_binary = bos.tobytearray(); bos.close(); Probably a better way with the fileinputstream but I already had this code so I

Postgres, ColdFusion and Transactions

2004-08-31 Thread Hansjoerg Posch
Hello! I've got the following problem: Commits seem to be executed in a deferred mode. An example: 1) DELETE some rows ... commit the transaction 2) SELECT rows ... the rows deleted in 1) are still displayed 3) After a reload of the page the rows of 1) have dissapeared I've already tried to

<    1   2