Re: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-20 Thread Dick Applebaum
On Jul 19, 2004, at 8:35 PM, Rick Mason wrote: Dick, Doug Engelbart was the inventor of the mouse.  Got the chance to meet him around twelve years ago.  One of his employees actually coined the name mouse. http://www.invent.org/hall_of_fame/53.html Rick Mason Yes, that sounds

Re: MediaPlayer

2004-07-20 Thread Dick Applebaum
Rick Sure! I'll email you off list, Dick On Jul 19, 2004, at 8:20 PM, cfhelp wrote: My JukeBox is here. http://www.kcjukebox.com/ http://www.kcjukebox.com/ http://www.kcjukebox.com/ http://www.kcjukebox.com/ The CF_Nuke is here http://www.mycfnuke.com/ http://www.mycfnuke.com/

Re: MediaPlayer

2004-07-20 Thread Dick Applebaum
Rick Apple has just started shipping their Airport Extreme / AirTunes system.I got mine last Thursday. http://www.apple.com/airportexpress/airtunes.html It is a little Airport (wireless) router that can connect to a stereo as well as to a LAN the internet, So, from any computer in the

Re: Example Request - Query Database from Flash and Return Result to Flash

2004-07-20 Thread dave
depends on what method u want to get it back from if ur using cfc's then u should use remoting because all the query is directly available too flash at that point. check out www.communitymx.com for new tuts on using the new remoting classes now if u just want the one varaible all u gotta do is

cf mx and oracle 8i

2004-07-20 Thread Steff
Hello I have a request like insert into toolbox (idtoolbox,label,descr,language,idlinktype,idsource,creatingdate,updatingdat e,publish,delstatus,orderby) values (2,'services et catgories','','FR',0,0,to_date('2004-07-19 00:00:00.0', 'dd/mm/'),to_date('2004-07-19 00:00:00.0',

RE: cf mx and oracle 8i

2004-07-20 Thread Micha Schopman
Try using createODBCDateTime() to specify a dateobject, instead of to_date() Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message] [Subscription]

Re: cf mx and oracle 8i

2004-07-20 Thread Simon Whittaker
On Tue, 20 Jul 2004 09:51:37 +0200, Steff [EMAIL PROTECTED] wrote: Hello I have a request like insert into toolbox (idtoolbox,label,descr,language,idlinktype,idsource,creatingdate,updatingdat e,publish,delstatus,orderby) values (2,'services et catgories','','FR',0,0,to_date('2004-07-19

RE: cf mx and oracle 8i

2004-07-20 Thread Steff
I try and I obtain ORA-00932: inconsistent datatypes Can you help me? thanks steff -Message d'origine- De : Micha Schopman [mailto:[EMAIL PROTECTED] Envoy : Tuesday, July 20, 2004 10:06 AM : CF-Talk Objet : RE: cf mx and oracle 8i Try using createODBCDateTime() to specify a dateobject,

Re: cf mx and oracle 8i

2004-07-20 Thread Simon Whittaker
Steff, You need to use to_date as this is used by Oracle to convert your date from a string into the correct format. Have you tried the re-ordering I suggested? to_date('19/07/2004', 'dd/mm/') Cheers Simon On Tue, 20 Jul 2004 10:20:05 +0200, Steff [EMAIL PROTECTED] wrote: I try and I

RE: cf mx and oracle 8i

2004-07-20 Thread Micha Schopman
We need more info from you, we can only guess at the moment -Is the datetime value you are inserting between the boundaries of the datetime type you have set with Oracle? (small datetime, large datetime, etc) - On which column does the error occur (take away cols, add cols, to your command) -

RE: cf mx and oracle 8i

2004-07-20 Thread Steff
I think where is the problem, I get date values with a query. The table valueis like 19-JUL-04. Coldfusion gives me a date like '2004-07-19 00:00:00.0' to_date can't convert. So I should certainly before insert query, modify the date to obtain the right format. thanks steff -Message

Re: cf mx and oracle 8i

2004-07-20 Thread Simon Whittaker
On Tue, 20 Jul 2004 10:32:35 +0200, Steff [EMAIL PROTECTED] wrote: I think where is the problem, I get date values with a query. The table valueis like 19-JUL-04. Coldfusion gives me a date like '2004-07-19 00:00:00.0' to_date can't convert. So I should certainly before insert query, modify

RE: cf mx and oracle 8i

2004-07-20 Thread Micha Schopman
Well you can create a new date object using CreateDateTime, CreateODBCDateTime, after stripping out the wanted values with Left, Right and Mid. So for DD-MM- you could do cfset datevar = 20-07-2004 cfset tmp = createODBCDate(createDate(ListGetAt(datevar,3,-), ListGetAt(datevar,2,-),

Re: cf mx and oracle 8i

2004-07-20 Thread Jochem van Dieten
Steff wrote: insert into toolbox (idtoolbox,label,descr,language,idlinktype,idsource,creatingdate,updatingdat e,publish,delstatus,orderby) values (2,'services et cat¿½gories','','FR',0,0,to_date('2004-07-19 00:00:00.0', 'dd/mm/'),to_date('2004-07-19 00:00:00.0', 'dd/mm/'),1,0,)

RE: cf mx and oracle 8i

2004-07-20 Thread Steff
Thanks, it works well. cordialy Steff -Message d'origine- De : Simon Whittaker [mailto:[EMAIL PROTECTED] Envoy : Tuesday, July 20, 2004 10:37 AM : CF-Talk Objet : Re: cf mx and oracle 8i On Tue, 20 Jul 2004 10:32:35 +0200, Steff [EMAIL PROTECTED] wrote: I think where is the problem, I

Re: Problem with SQL Server and CF5

2004-07-20 Thread Bert Dawson
It works on one machine running the same version of CF, or is one on CF5 and one CFMX? If i were you i'd create a template with just the cfdirectory, cfquery QofQ, and a cfdump and take it from there, twaeking bits till you get to the root cause. eg : Replace the cfdirectory with a dummy hand

RE: Trusted cache and updated templates

2004-07-20 Thread Bert Dawson
One way which might assist automating this would be to use the RunTimeService of the CF serviceFactory: 1. Use cfdirectory to get list of updated templates. 2. factory.runtimeservice.SetTrustedCache(false); 3. loop though updated templates, including each one inside a cftry/catch to ignore errors

Re: cfset vs. cfsavecontent

2004-07-20 Thread Stephen Moretti (cfmaster)
Dave Carabetta wrote: When I wrapped a CFSETTING ENABLECFOUTPUTONLY around it, though, I got the same error you did. Interesting. On a hunch after looking through your sample above, I switched back to cfxml and simply put cfoutput after the opening cfxml and before the closing cfxml

Re: MediaPlayer

2004-07-20 Thread Cutter (CF-Talk)
Rick, I would look into using WM9 as opposed to WM7 (fairly wide distribution, so it shouldn't be much of a stretch.) MS has full documentation for control in the SDK, and an active forum on their developer's site, which may give you the information you need. If I had a little more time I

RE: cfset vs. cfsavecontent

2004-07-20 Thread Hugo Ahlenius
Personally I am never using CFSETTING ENABLECFOUTPUTONLY, instead I am using cfsilent (for plain templates) and output=no for cfc/cffunction. Since the cfsetting/enabelcfoutputonly is set for the whole request, until the cfsetting is changed, I feel that it breaks encapsulation -- one loses

flash cloud of cf-talk

2004-07-20 Thread Hugo Ahlenius
I can't seem to locate that link again, and maybe that cool toy is not running anymore -- someone posted a link to a cool flash app some time ago, that looked somewhat like a mind map. The application analyzed the posts to cf-talk (and cfaussie?) and the relations and locations (and size?) of the

Re: flash cloud of cf-talk

2004-07-20 Thread Mark Drew
http://marumushi.com/apps/socialcircles/ Select the list fromthe drop down MD On Tue, 20 Jul 2004 13:20:07 +0200, Hugo Ahlenius [EMAIL PROTECTED] wrote: I can't seem to locate that link again, and maybe that cool toy is not running anymore -- someone posted a link to a cool flash app some

Re: not associated with a trusted SQL Server connection? please help

2004-07-20 Thread cf coder
we are using a desktop application/product (third party) that connects to the sql server with integrated windows authentication. When you launch the application window, it authenticates the user against the windows login. I am working on a project that replaces this desktop client application

hot fix - ColdFusion MX 6.1 File Upload Denial of service

2004-07-20 Thread cf coder
MPSB04-06 - Security Patch available for ColdFusion MX 6.1 File Upload Denial of service (http://www.macromedia.com/devnet/security/security_zone/mpsb04-06.html) I installed this Security Patch and followed the steps mentioned in this article Stop ColdFusion MX Place the hf52806_61.jar in the

Re: hot fix - ColdFusion MX 6.1 File Upload Denial of service

2004-07-20 Thread Thomas Chiverton
On Tuesday 20 Jul 2004 13:50 pm, cf coder wrote: The cf administrator system information version details for some reason have changed to: Umm, yes ? And ? -- Tom Chiverton Advanced ColdFusion Programmer [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: hot fix - ColdFusion MX 6.1 File Upload Denial of service

2004-07-20 Thread Jochem van Dieten
cf coder wrote: MPSB04-06 - Security Patch available for ColdFusion MX 6.1 File Upload Denial of service I installed this Security Patch The cf administrator system information version details for some reason have changed to: Version 6,1,0,hf52806_61 But what is the question? Jochem

RE: hot fix - ColdFusion MX 6.1 File Upload Denial of service

2004-07-20 Thread Robertson-Ravo, Neil (RX)
The version numbering of ColdFusion MX is a long talked about subject, all this means is that CFMX Is picking up the last (or maybe the only) .jar file in the lib directory.it simply reads in this file name and outputs it into the ColdFusion version number.it means literally

Re: hot fix - ColdFusion MX 6.1 File Upload Denial of service

2004-07-20 Thread cf coder
I wasn't sure why it did that and was just wondering if the hot fix has changed any installation settings. I guess its not a biggie Cheers, cfcoder cf coder wrote: MPSB04-06 - Security Patch available for ColdFusion MX 6.1 File Upload Denial of service I installed this Security Patch

CFMX 6.1-Windows authentication failure

2004-07-20 Thread cf coder
I posted a thread on the macromedia forums and got this reply. http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=3threadid=862163 Has anyone installed DataDirect 3.3? If so have you had any problems with it? Cheers, cfdoder [Todays Threads] [This Message]

RE: not associated with a trusted SQL Server connection? please h elp

2004-07-20 Thread Dave Watts
we are using a desktop application/product (third party) that connects to the sql server with integrated windows authentication. When you launch the application window, it authenticates the user against the windows login. Would you want your web application to work the same way, anyway?

Writing a message board using OOP and Components - how?

2004-07-20 Thread Jon Block
Here's a really general question for your advanced OOP coders... I may have to write a message board and I'm wondering how one would create a standard message board using best practices and OOP style. To see the type of message board I'm talking about, take a look at:

RE: OT: JavaScript window

2004-07-20 Thread Robert Orlini
Thanks Ian. One question. Using either code does not allow the popup to stay active. It immediately closes and then tries to refresh the page that spawned it. The update.gif is the image button on the popup page. Once I click that then it performs the update and should close and reload the

RE: CFMX 6.1-Windows authentication failure

2004-07-20 Thread Dave Watts
Has anyone installed DataDirect 3.3? If so have you had any problems with it? The latest driver hotfix from MM contains the DataDirect 3.3 drivers. As you'll notice from the technote, while the drivers support trusted connections, CFMX itself does not - there's no switch inside the CF

Re: hot fix - ColdFusion MX 6.1 File Upload Denial of service

2004-07-20 Thread John Beynon
the system info version changes when you apply hotfixes etc. I haven't worked out in what order but i have a load installed and yet i see Version: 6,1,0,63958. To verify which hot fixes you've got installed login to the admin and go to System Information and look in the Java Class Path section to

Re: hot fix - ColdFusion MX 6.1 File Upload Denial of service

2004-07-20 Thread cf coder
thank you everybody for your help on this regards, cfcoder [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-20 Thread Ken Ferguson
Whoa Matt, I was half-kidding. Like I said, they're still looking for a guy who can do the job right. Why should people believe that Jobs wasn't the guy then, but he is now and if he decides again that he's not, what nut will they go out and find next...? It's fairly comical. My point isn't

Using the internal Web server for CFAdmin

2004-07-20 Thread Mike Chabot
I initially installed CFMX in standalone mode, then ran wsconfig to attach it to my Web server (Sun ONE). However, port 8500 is still being used by the internal ColdFusion Web server. I am wondering if it is reasonable to run the internal Web server for CFAdmin and use Sun ONE for everything else,

Re: ColdFusion and MVC model...

2004-07-20 Thread Marc Campeau
Get the Gang of Four book on patterns for OO development, peek under the covers of FB, Mach II, etc. and see how things work. Yup, good advice! While you guys are giving advice might I ask if anyone can recommend books/websites which would take a case study approach behind the creation of an

Re: cfset vs. cfsavecontent

2004-07-20 Thread Dave Carabetta
On Tue, 20 Jul 2004 13:18:05 +0200, Hugo Ahlenius [EMAIL PROTECTED] wrote: Personally I am never using CFSETTING ENABLECFOUTPUTONLY, instead I am using cfsilent (for plain templates) and output=no for cfc/cffunction. Since the cfsetting/enabelcfoutputonly is set for the whole request, until

Re: CFMX 6.1-Windows authentication failure

2004-07-20 Thread cf coder
Thanks Dave for your reply to this thread and the one before this. I've not yet downloaded the dataDirect 3.3 drivers. There's no point really is there? when ColdFusion doesn't support it? In your reply you mention that there is a workaround which may or may not work. If I go with that and

RE: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-20 Thread Stacy Young
table width=800 cellpadding=4 cellspacing=10 border=0tr bgcolor=BDBDBDtd valign=top width=400font face=verdana size=2 color=FFbAVIS IMPORTANT/b/font/tdtd valign=top width=400font face=verdana size=2 color=FFbWARNING/b/font/td/trtrtd valign=top width=400p align=justifyfont face=verdana

merge data from two queries

2004-07-20 Thread Tony Weeg
hello all... if you wanted to take two queries, with like columns, and data that needed to be merged, what would you do? 1. turn the query record set into a structure, and find the matching keys, and merge the data? 2. turn the query record set into an array and do the same kinda thing? 3. or

RE: Apple going bankrupt. was Re: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-20 Thread Ken Ferguson
...several good points... If, that is mismanagement, Jobs should teach business management at Wharton, or Harvard. Their competitors should shoud be so badly managed! Dick Yeah, I agree with you that Jobs is doing a great job right now. I just like to look into the history of a

RE: OT: JavaScript window

2004-07-20 Thread Robert Orlini
Ian, Never mind. A few tweaks and all is well. Thanks again and thanks all who contributed. Robert O. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Monday, July 19, 2004 7:09 PM To: CF-Talk Subject: RE: OT: _javascript_ window If po3.cfm is the window that

Re: MediaPlayer

2004-07-20 Thread Dick Applebaum
Rick It would also be worth supporting Quicktime.Apple has a new codec that supports higher quality video at lower data rates.Steve demoed it by doing a video chat with 3 concurrent participants displayed on the screen. http://www.apple.com/macosx/tiger/h264.html Dick On Jul 20, 2004, at

RE: merge data from two queries

2004-07-20 Thread Tangorre, Michael
1. turn the query record set into a structure, and find the matching keys, and merge the data? 2. turn the query record set into an array and do the same kinda thing? 3. or some other way? Loop over query 1. Add rows to query 2 (use query functions). Select DISTINCT from the new query

RE: CFMX 6.1-Windows authentication failure

2004-07-20 Thread Dave Watts
Thanks Dave for your reply to this thread and the one before this. I've not yet downloaded the dataDirect 3.3 drivers. There's no point really is there? when ColdFusion doesn't support it? Well, the 3.3 drivers do work a lot better than the original ones if you're using SQL Server - that's

RE: merge data from two queries

2004-07-20 Thread Dave Watts
if you wanted to take two queries, with like columns, and data that needed to be merged, what would you do? 1. turn the query record set into a structure, and find the matching keys, and merge the data? 2. turn the query record set into an array and do the same kinda thing? 3. or some

RE: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-20 Thread James Smith
volume automatically adjusts based on the speed of the car because of the associated increase in noise. Again, you can easily change the volume of the radio yourself, but AAA studies show that is the number one cause of accidents. I must admit that when I had a Ford Focus that did this I

Re: merge data from two queries

2004-07-20 Thread Joe Rinehart
Tony, If they're coming from the same datasource, try using a UNION query to have the database return the two recordsets as one. If they're coming from different datasources, you could probably still UNION them inside a query of queries. -joe - Original Message - From: Tony Weeg [EMAIL

Re: merge data from two queries

2004-07-20 Thread Tony Weeg
dont ask, but its a bad db design, not me, and there are some text cols, that prevent that!!! and the two db's dont have the same cols, dont ask, its annoying, but mike t suggested on aim, to use cast, and maybe that'll work?? tw On Tue, 20 Jul 2004 10:15:58 -0400, Dave Watts [EMAIL

Re: not associated with a trusted SQL Server connection? please h elp

2004-07-20 Thread cf coder
No, I don't want my web application to work that way. I check the LDAP directory if the user is a member of a group, if yes then he is directed to the web home page. Something that I forgot to mention in my earlier post was that, the ColdFusion server and SQL server are running on two different

Re: merge data from two queries

2004-07-20 Thread Tony Weeg
can i do a union query with a query like this? select count(r.reportId) as reportCount, v.vehicleName, c.companyName from reports r left outer join vehicleTable v on v.ipAddressNumber = r.ipAddressNumber inner join companyTable c on c.companyIdnumber = r.companyId where r.companyId

RE: merge data from two queries

2004-07-20 Thread Tangorre, Michael
Try casting the data to the appropriate type in each of the queries then use QoQ with UNION... Should get you what you need. And go punch the DB designer in the nose :-) Mike T dont ask, but its a bad db design, not me, and there are some text cols, that prevent that!!! and the two

RE: MediaPlayer

2004-07-20 Thread Greg Luce
Dick, I know you're a big Mac guy, but some of us dislike Quicktime. I don't know how many times I've installed it and try to tell it not to change my filetype associations, but it does anyway somehow. I hate having it installed on my PC. Sometimes I have to install it to watch something

RE: merge data from two queries

2004-07-20 Thread Ken Ferguson
So I have an app where I do this. How I do it is I loop over query-A and use queryaddrow and querysetcell to add the data to query-B. In this way, you can map the columns easily from one query to the next and still use it as a query object. There may be advantages to just combining the two in a

Re: cfset vs. cfsavecontent

2004-07-20 Thread S . Isaac Dealey
On Tue, 20 Jul 2004 13:18:05 +0200, Hugo Ahlenius [EMAIL PROTECTED] wrote: Personally I am never using CFSETTING ENABLECFOUTPUTONLY, instead I am using cfsilent (for plain templates) and output=no for cfc/cffunction. Since the cfsetting/enabelcfoutputonly is set for the whole request,

Re: merge data from two queries

2004-07-20 Thread Joe Rinehart
QoQ will work fine, but it'd still be better to union them at the DB if possible. Tony, where are the queries coming from?Same database?A database at all, or a tag that generates a query? -joe [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations

Re: merge data from two queries

2004-07-20 Thread Tony Weeg
thats what ill do, i think thats the answer, thanks ken, mike, dave and joe! On Tue, 20 Jul 2004 09:17:48 -0500, Ken Ferguson [EMAIL PROTECTED] wrote: So I have an app where I do this. How I do it is I loop over query-A and use queryaddrow and querysetcell to add the data to query-B. In this

Virtual Mappings in jrun-web.xml

2004-07-20 Thread Mike Chabot
I upgraded a CFMX 6.0 install to CFMX 6.1, and then attached it to my Web server (Sun ONE). Inside jrun-web.xml there are two virtual mappings, one of which is below. virtual-mapping resource-path/*/resource-path system-pathC:/CFusionMX/wwwroot//system-path /virtual-mapping On other servers,

Re: merge data from two queries

2004-07-20 Thread Tony Weeg
two different databases.VERY similar cols, and VERY similar data. but, some different ones, again, not me...and im not happy about it, but i cannot do a thing about it, other than create the new Database that i have created that will be implementing soon, a distributed partitioned view, which is

Re: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-20 Thread Dick Applebaum
On Jul 20, 2004, at 6:48 AM, Ken Ferguson wrote: Whoa Matt, I was half-kidding. Like I said, they're still looking for a guy who can do the job right. Why should people believe that Jobs wasn't the guy then, but he is now and if he decides again that he's not, what nut will they go out and

Faster - cfquery cache or cfquery-application scope?

2004-07-20 Thread Damien McKenna
Which would be faster: - Using cfquery to cache data for e.g. a day. - Using cfquery to load data to the application scope, only reloading after a set period of time (cfif application.refreshtime LT now()). -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company -

RE: MediaPlayer

2004-07-20 Thread cfhelp
Thanks everyone for the input I will be checking into it all especially the WM9 Codec I think the ultimate idea would be to detect the users default player or at least ask them if they want QuickTime, winamp or Media Player. In the case of the KCJukeBox.com I can store that info in the database

Re: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-20 Thread Michael Dinowitz
As Sean suggested, maybe this thread should be moved over to CF-OT or CF-Community. Thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Using the internal Web server for CFAdmin

2004-07-20 Thread Samuel R. Neff
Using the internal web server is one way to protect it since you can block the port at firewall, but this only applies if admin is not accessible from the sun web server and also remember that some of the files are required for certain functionality.. wddx, cfform validation for example. Sam

Carriage returns in XML file

2004-07-20 Thread Ben Densmore
I'm wondering if there is a way to fix an attribute in an XML file that has carriage returns in it? I have an admin section that has a teaxtarea for putting in a description as well as some other fields. The problem is if the user puts carriage returns in the textarea the xml file outputs like:

RE: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-20 Thread Ken Ferguson
I think you guys are a little blinded by emotion or something of the sort. Please listen to me as I state something VERY CLEARLY that I've tried to state several times, but you guys seem to skip right over. *** I'm not saying that Apple is any less (good/competent/rich/innovative...) than MS or

SOT: Is this possible? was mediaPlayer

2004-07-20 Thread Dick Applebaum
Rick Eidson and I (separately and together) are trying to develop web-based (or Web/Desktop-based) multimedia players. In the web version, the media (songs, movies, photos) reside on the server. When a user logs in he (theoritically) is able to manipulate the media much as he would do with

RE: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-20 Thread Ken Ferguson
Or ended - you guys are right and I'm wrong, whatever... I think I've been wasting my own time trying to get a simple point across that doesn't really even matter. Sorry to have inconvenienced the LIST! -Ferg As Sean suggested, maybe this thread should be moved over to CF-OT or CF-Community.

RE: not associated with a trusted SQL Server connection? please h elp

2004-07-20 Thread Dave Watts
What you already know is that the SQL server authentication is set to 'Windows only' because of the reasons I mentioned in my earlier post. Since CF does not currently support trusted connections, validating a datasource connection fails. ... When you say I will need to enable the

Re: Is this possible? was mediaPlayer

2004-07-20 Thread Bryan Stevenson
hmmm.,.. Have you tried running JS onUnLoad? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Original Message - From: Dick Applebaum To: CF-Talk Sent: Tuesday, July 20, 2004 8:06 AM Subject: SOT:

RE: Faster - cfquery cache or cfquery-application scope?

2004-07-20 Thread Dave Watts
Which would be faster: - Using cfquery to cache data for e.g. a day. - Using cfquery to load data to the application scope, only reloading after a set period of time (cfif application.refreshtime LT now()). I doubt there's a significant performance difference. You should choose based

Re: merge data from two queries

2004-07-20 Thread Tony Weeg
so, i want to access the first row of a query recordset. queryName[1].columnName doesnt work. any ideas how i can get to that?or am i complicating this too much? snip -- tony Tony Weeg human. email: tonyweeg [at] gmail [dot] com blog: http://www.revolutionwebdesign.com/blog/ Check out

Re: merge data from two queries

2004-07-20 Thread Tony Weeg
NEVERMIND, im an idiot. queryname.columnName[1] DU!!! must be all that freakin' golf over the past 10 days... :) me snip -- tony Tony Weeg human. email: tonyweeg [at] gmail [dot] com blog: http://www.revolutionwebdesign.com/blog/ Check out http://www.antiwrap.com to send websites

perceptions (was RE: VMWare was Re: Best choice for ColdFusion Studio IDE...)

2004-07-20 Thread Matt Liotta
I don't think I understand the point you are trying to make. You started with Apple was going bankrupt and then moved on to Macs being toys and now you are saying people just perceive Macs to be toys. Yeah, so what? It does all sound oddly familiar though. CF does scale... err I mean CF is a

RE: merge data from two queries

2004-07-20 Thread Mark A. Kruger - CFG
did someone say golf??? perk -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 10:18 AM To: CF-Talk Subject: Re: merge data from two queries NEVERMIND, im an idiot. queryname.columnName[1] DU!!! must be all that freakin' golf over the

Re: merge data from two queries

2004-07-20 Thread Tony Weeg
10 days, check out my blog, its all there... -- tony Tony Weeg human. email: tonyweeg [at] gmail [dot] com blog: http://www.revolutionwebdesign.com/blog/ Check out http://www.antiwrap.com to send websites to your friends. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

RE: merge data from two queries

2004-07-20 Thread Mark A. Kruger - CFG
Tony, this is a join - not a union. A union query matches 2 different tables or recordsets with the same type in each matching column. select col1, col2, col3 from table1 union select a1, a2, a3 from table2 -- If col1 is an int and a1 is a char, this will fail.They can be named differently

sorting after query?

2004-07-20 Thread Greg.Morphis
Hey guys I have a query that's generated by a form and displayed on the page. I want to add sorting abilities to the header column. How would I pass the existing form information back to the page along with the new #url.orderby# variable to have the sorting done off the query results? So if the

Re: CFMX 6.1-Windows authentication failure

2004-07-20 Thread Greg Stewart
Isaac Dealey Has written a pretty neat article on using JDBC (http://sys-con.com/story/?storyid=45569DE=1) It doesn't cover what you are trying achieve, but it certainly can get you started with JDBC. G On Tue, 20 Jul 2004 10:15:11 -0400, Dave Watts [EMAIL PROTECTED] wrote: Thanks Dave for

single vs. multiple cfoutputs in CFMX

2004-07-20 Thread Michael Dinowitz
Has anyone done any recent tests in CFMX on the speed difference between one global output around a template vs. multiple CFOUTPUTs around specific content in a page? If not, it'll go on my testing list. Thanks -- Michael Dinowitz http://www.houseoffusion.com For all your ColdFusion needs

Re: Faster - cfquery cache or cfquery-application scope?

2004-07-20 Thread Damien McKenna
On Jul 20, 2004, at 11:22 AM, Dave Watts wrote: I think it makes sense to use the appropriate memory scopes for caching, instead of having caching abstracted away from you as the CACHEDWITHIN/CACHEDAFTER attributes do. Along with that, if I do it via the Application scope there's little

RE: sorting after query?

2004-07-20 Thread Greg.Morphis
never mind, I figured it out. Thanks -Original Message- From: Morphis, Greg Sent: Tuesday, July 20, 2004 10:47 AM To: CF-Talk Subject: sorting after query? Hey guys I have a query that's generated by a form and displayed on the page. I want to add sorting abilities to the header

RE: single vs. multiple cfoutputs in CFMX

2004-07-20 Thread Tangorre, Michael
Mike, I fooled around with this a little, but my page sizes are so small (FB4) that I use cfoutput around chunks of code instead of a global cfoutput approach and instead of wrapping every thing in its own cfoutput When I did test a few things out, I had no difference in time on average; I

Re: Carriage returns in XML file

2004-07-20 Thread Rob
On Tue, 20 Jul 2004 09:58:53 -0500, Ben Densmore [EMAIL PROTECTED] wrote: I'm wondering if there is a way to fix an attribute in an XML file that has carriage returns in it? I have an admin section that has a teaxtarea for putting in a description as well as some other fields. The problem is

Using HTML data to populate in word doc

2004-07-20 Thread Ketan Patel
Hi All, I am able to write a word doc dynamically but the HTML is not getting executed. This is what I get for my hello world... h1hello world /h1 Is there any way to tell word doc that to execute the HTML? I am using cfsavecontent to store all the data. Thanks, Ketan Patel [Todays

Re: CFMX 6.1-Windows authentication failure

2004-07-20 Thread S . Isaac Dealey
Yea, I'd definately say meta-data is a far cry from user-authentication. :) Isaac Dealey Has written a pretty neat article on using JDBC (http://sys-con.com/story/?storyid=45569DE=1) It doesn't cover what you are trying achieve, but it certainly can get you started with JDBC. G On Tue,

RE: cfset vs. cfsavecontent

2004-07-20 Thread Barney Boisvert
You're correct, it's not a bug, though it's not necessarily what you'd expect.Just think of CFSETTING as turning on a request-level flag (which affects ALL templates in the request), indicating that nothing should be output. I'd recommend always putting generated content inside CFOUTPUT tags

Re: SOT: Is this possible? was mediaPlayer

2004-07-20 Thread mavinson
Dick Applebaum [EMAIL PROTECTED] 07/20/2004 11:06 AM Please respond to cf-talk To:CF-Talk [EMAIL PROTECTED] cc: Subject:SOT: Is this possible? was mediaPlayer Is this possible with _javascript_? -- probably Is it possible with a Java applet? -- certainly If not possible with a plugin,

RE: Carriage returns in XML file

2004-07-20 Thread Wes
You can remove the carriage returns and Line feeds like so. #Replace(yourVarHere, chr(13), , ALL)#--For Carriage returns. #Replace(yourVarHere, chr(10), , ALL)#--For linefeeds -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 10:59 AM To:

Re: Is this possible? was mediaPlayer

2004-07-20 Thread Dick Applebaum
On Jul 20, 2004, at 8:13 AM, Bryan Stevenson wrote: hmmm.,.. Have you tried running JS onUnLoad? Bryan Stevenson B.Comm. That sounds good, except the content of the popup is an mp3, served with !--- this works for mp3 --- cfheader name=Content-Disposition value=attachment;

Re: Is this possible? was mediaPlayer

2004-07-20 Thread Bryan Stevenson
So no BODY tag whatsoever in the popup? That aside...someone else mentioned Flash...I would most definately build something like this in Flash...way more control and could also be built as a projector for standalone use (no browser required). Cheers Bryan Stevenson B.Comm. VP Director of

RE: single vs. multiple cfoutputs in CFMX

2004-07-20 Thread Wes
Ben Forta explained this in a CFUG a couple years or so back.He said that it was more efficient to have CFOUTPUTS around each variable output rather than the entire page because otherwise, the CF server looks at EVERY character from top to bottom of your page looking for a # and then it's end #.

RE: single vs. multiple cfoutputs in CFMX

2004-07-20 Thread Dave Watts
Ben Forta explained this in a CFUG a couple years or so back. He said that it was more efficient to have CFOUTPUTS around each variable output rather than the entire page because otherwise, the CF server looks at EVERY character from top to bottom of your page looking for a # and then

Re: single vs. multiple cfoutputs in CFMX

2004-07-20 Thread Bryan Stevenson
Things have changed in the past few yearsit used to be slower to wrap the whole page in CFOUTPUTnot anymore (or it's so insignificant it's not worth the PITA to open/close everywhere). For me it's all about clean codewrap the whole page...nice and clean ;-) HTH Cheers Bryan

RE: single vs. multiple cfoutputs in CFMX

2004-07-20 Thread Marlon Moyer
I would think that nowadays since the page is compiled, the only time you'll notice a speed difference, if even then, will be during compilation. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 12:45 PM To: CF-Talk Subject: Re: single

Re: single vs. multiple cfoutputs in CFMX

2004-07-20 Thread Claude Schneegans
the CF server looks at EVERY character from top to bottom of your page looking for a # and then it's end #. Since it is looking for ... and analysing every tag anyway, I do not think it is a big deal to look for # in the same time. -- ___ REUSE CODE! Use

Re: Virtual Mappings in jrun-web.xml

2004-07-20 Thread Ben Frame
Mike, Not sure I can answer all the parts of your question, but I recently worked through an issue with MACR tech support on the use of a JRUN virtual mapping. In my case, we wanted to move the location of the files which make up the CF Administrator...for example, instead of using the

Re: Using the internal Web server for CFAdmin

2004-07-20 Thread Mike Chabot
Securing CFAdmin in Sun ONE would not be very difficult, although not having to do this saves me a step. I have already copied a minimal CFIDE directory so that port 80 sees it. Perhaps there is some performance issue. Is the server appreciably slower with the CFMX Web server running on it?

  1   2   >