RE: using cfinclude

2006-02-21 Thread Tim Heald
You wouldn't use cfinclude. That is only for local files that will be included and parsed as CF. You want to use cfhttp. -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 21, 2006 9:38 AM To: CF-Talk Subject: using cfinclude I've got a

RE: Quick Regex question

2006-02-20 Thread Tim Heald
Using what? Why not just pull it out with CF? Why use a regex? -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, February 20, 2006 5:10 PM To: CF-Talk Subject: Quick Regex question I need to pull some text out of XML and I wanted to see how that

RE: Try/Catch vs. direct error handling

2006-02-15 Thread Tim Heald
Huge error logs man. You don't want to do that. There is a built in means of terminating a loop. (break, exit?) Tim -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 15, 2006 12:08 PM To: CF-Talk Subject: RE: Try/Catch vs. direct error

RE: Try/Catch vs. direct error handling

2006-02-15 Thread Tim Heald
Seriously that's crazy. -Original Message- From: John C. Bland II [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 15, 2006 12:19 PM To: CF-Talk Subject: Re: Try/Catch vs. direct error handling Wow, that is the epitomy of overkill. :-) In most of those cases I'd say it

RE: Try/Catch vs. direct error handling

2006-02-15 Thread Tim Heald
He he he Yes, yes it was. 4.5.1 made it solid though. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 15, 2006 12:33 PM To: CF-Talk Subject: Re: Try/Catch vs. direct error handling Short Circuited Boolean Evaluation was added in CF

RE: Try/Catch vs. direct error handling

2006-02-15 Thread Tim Heald
Then it is appropriate to use transaction processing and try/catch logic. You're dealing with more complex objects at this point already, dealing with the network and another server, this way even if you lose the network in the middle of running a proc or something it will roll back.

RE: Try/Catch vs. direct error handling

2006-02-15 Thread Tim Heald
How fast is: Select @@identity From #mytable# ?? Or Select @@identity as myID -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 15, 2006 1:54 PM To: CF-Talk Subject: Re: Try/Catch vs. direct error handling I do not use MSSQL much but

My Politics

2006-01-24 Thread Tim Heald
So, Larry laid out his beliefs, and I figured I would try and do the same. Overall Beliefs Politics and policies must be guided by reason. Compassion and altruism have no place in this sphere. Domestic Policy Do as you will so long as you harm none. I know it sounds campy but it's really

RE: My Politics

2006-01-24 Thread Tim Heald
-Original Message- From: Tim Heald [mailto:[EMAIL PROTECTED] Sent: 24 January 2006 14:47 To: CF-Talk Subject: My Politics So, Larry laid out his beliefs, and I figured I would try and do the same. Overall Beliefs Politics and policies must be guided by reason. Compassion

RE: Encrypt CC number and store in DB

2006-01-13 Thread Tim Heald
If you work at a publicly traded company you need to look into Sarbanes Oxley as well -Original Message- From: Baz [mailto:[EMAIL PROTECTED] Sent: Friday, January 13, 2006 10:34 AM To: CF-Talk Subject: RE: Encrypt CC number and store in DB I read a bit about PCI Data Security

RE: Encrypt CC number and store in DB

2006-01-13 Thread Tim Heald
compensation of employees - particularly company officers. It does indeed specify a lot of requirments for storage - but mostly of internal company information. CC numbers have more to do with privacy of customer information - yes? -mark -Original Message- From: Tim Heald

RE: testing for an undefined date

2006-01-13 Thread Tim Heald
In your query you can do: Where event_date is null Or is not null In your cf you can do cfif len(trim(whatsNew.eventDate)) -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Friday, January 13, 2006 1:09 PM To: CF-Talk Subject: testing for an undefined

RE: testing for an undefined date

2006-01-13 Thread Tim Heald
Read further. -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Friday, January 13, 2006 1:30 PM To: CF-Talk Subject: Re: testing for an undefined date In your query you can do: Where event_date is null Or is not null I still want the record, but

Stored Proc/CF help!!

2006-01-09 Thread Tim Heald
select cdata, cdate from table where cdata = 1 end End if How would I return the second query to CF? I know that's not the greatest example, and it prolly won't even run, but it's close. I can answer questions if need be. TIA Tim Heald [EMAIL

RE: Stored Proc/CF help!!

2006-01-09 Thread Tim Heald
They are both still undefined. This is killing me because the procedure compiled just fine, it doesn't have an IN variables, is there something I need to do to specify that they are OUT result sets? -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Monday, January

RE: Stored Proc/CF help!!

2006-01-09 Thread Tim Heald
/cfstoredproc Notice the type=InOut In theory this would work if your database is like mine. :) ~Brad -Original Message- From: Tim Heald [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 11:30 AM To: CF-Talk Subject: RE: Stored Proc/CF help!! They are both

RE: Snippets

2005-12-14 Thread Tim Heald
I'm pretty sure he was being sarcastic. -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 3:39 PM To: CF-Talk Subject: RE: Snippets Not sure about Dreamweaver, but this is something that is available in both CFEclipse and

RE: [SOT] avg hourly rate for mid and adv cf programmer

2005-11-03 Thread Tim Heald
care of social security and all that. Tim Heald [EMAIL PROTECTED] ColdFusion Developer Signal Solutions, Inc Work : 202-224-1224 Cell : 703-765-0618 -Original Message- From: John Lucania [mailto:[EMAIL PROTECTED] Sent: Thursday, November 03, 2005 10:39 AM To: CF-Talk Subject: [SOT

RE: CFDirectory

2005-10-27 Thread Tim Heald
As long as the box you are trying to hit has a share set up you can use an unc path like: \\myBox\c$\myfiles\ Tim Heald [EMAIL PROTECTED] ColdFusion Developer Signal Solutions, Inc Work : 202-224-1224 Cell : 703-765-0618 -Original Message- From: Dave Ashworth [mailto:[EMAIL

RE: converting text file to data

2005-10-25 Thread Tim Heald
]# ) /cfquery /cfloop !--- should do it --- Tim Heald [EMAIL PROTECTED] ColdFusion Developer Signal Solutions, Inc Work : 202-224-1224 Cell : 703-765-0618 -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 25, 2005 6:00 PM To: CF-Talk Subject: converting

RE: converting text file to data

2005-10-25 Thread Tim Heald
) values(#count#,#lineArray[i]#) /cfquery cfset count = count + 1 /cfloop That should get you what you want. Tim Heald [EMAIL PROTECTED] ColdFusion Developer Signal Solutions, Inc Work : 202-224-1224 Cell : 703-765-0618

RE: When will Dave Watts finally blog?

2005-10-21 Thread Tim Heald
You got a dream job mano :) Tim -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Friday, October 21, 2005 12:06 PM To: CF-Talk Subject: Re: When will Dave Watts finally blog? I was drunk when I got to work today. :) And it's Friday, which means BEERS AT

RE: When will Dave Watts finally blog?

2005-10-21 Thread Tim Heald
I'm just glad that no ones talking about my various past public intoxication problems. I mean, have you guys ever seen me at an event? Tim -Original Message- From: Larry Lyons [mailto:[EMAIL PROTECTED] Sent: Friday, October 21, 2005 1:36 PM To: CF-Talk Subject: Re: When will Dave

RE: Query Output in a cfscript

2004-03-27 Thread Tim Heald
You do an array loop through the query using writeOutput() something like this should work: for(i = 1; i lt myQuery.recordCount; i = i + 1){ writeOutput(myQuery.myColumn[i] 'br'); } -Original Message- From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] Sent: Saturday, March 27, 2004 7:56

RE: Mapping problems with new MX/IIS install, help please

2004-01-18 Thread Tim Heald
Yeah you need an IIS virtual directory as well. If you were trying to include that in a template located in or off of your web root it would have worked with the mapping, but not trying to browse it through IIS. -Original Message- From: Smith, Matthew P -CONT(CSC) [mailto:[EMAIL

RE: Zipcode transfer woes continue..

2004-01-18 Thread Tim Heald
Try changing the data type in access to memo or text before doing the transfer? -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Sunday, January 18, 2004 10:48 PM To: CF-Talk Subject: RE: Zipcode transfer woes continue.. Data type in access is number... trying

RE: Oracle 8i, CFMX 6.1 LOB issues

2004-01-08 Thread Tim Heald
It's a PL/SQL package, so it's using the stored proc tags. -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 5:14 PM To: CF-Talk Subject: RE: Oracle 8i, CFMX 6.1 LOB issues Not a stupid question at all, but yes we do. OK, the other

RE: GUI web controls

2004-01-04 Thread Tim Heald
There are plenty of _javascript_ menus out there that can be made to work with CF, many are free as well. Milonic are my favorite. http://www.milonic.com/ Tim -Original Message- From: stas [mailto:[EMAIL PROTECTED] Sent: Sunday, January 04, 2004 11:56 AM To: CF-Talk Subject: Re: GUI web

RE: Match to list item

2004-01-03 Thread Tim Heald
Try listFind() instead.If that doesn't work you'll need to do a list loop to directly compare the values.It should work though.I believe that listContains will find sub-strings, which would mean that's expected behavior. You should really be doing this with a link table that contains the id of

RE: Another CFML app server...

2003-12-04 Thread Tim Heald
Good point. I like the idea.Lets see if they can do something with it. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2003 7:32 AM To: CF-Talk Subject: Re: Another CFML app server... Michael Dinowitz wrote: They emailed me directly and

RE: I'm lost converting ASP to CF5

2003-10-25 Thread Tim Heald
Before you go to the trouble of converting this I think you should look into the IP law that would pertain.This is someone's product.They are selling it.I assume you got your copy by purchasing it? The first thing I would do is look at the license that came with it.It should contain some info

J2EE CFMX on Oracle 9 AS - Running :)

2003-08-29 Thread Tim Heald
All we had to do was turn off the admin password in neo-security.xml. Granted this is only a workaround, but hey you should have that exposed to the public anyway, there are other ways to secure that directory. If someone figures out how to get it working with admin security on please let me

RE: J2EE CFMX on Oracle 9 AS - Running :)

2003-08-29 Thread Tim Heald
but hey you should have that exposed to the public anyway Shouldn't, shouldn't -Original Message- From: Tim Heald [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 8:33 PM To: CF-Talk Subject: J2EE CFMX on Oracle 9 AS - Running :) All we had to do was turn off the admin

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Tim Heald
Why do I hear a yet at the end of that? Tim -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 4:46 PM To: CF-Talk Subject: Re: DWMX 2004 - Whats new for us? It's like New Atlanta came out with an IDE for CFML and in the next revision

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Tim Heald
Come on Matt you supposed to be logic man. That is not a linear statement. It would depend on the number of installs, and how large the sector it is art of grows. It could just have had such a large base that it would never need another copy sold in order to retain a majority, even if it was not

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Tim Heald
Are you talking in the government sector or in the (notional) general sample populace? I can say pretty much the same thing as Mike, the department I work for is moving to J2EE/CFMX. Huge purchases and hiring coming up. So in this sector I would have to say that the increase of CFs use is

Access SQL Question :(

2003-08-01 Thread Tim Heald
Evening, I am trying to work out an update statement for Access. It's on CF 4.5. I am generating the SQL in a cfscript, it will be below. The final script looks like this: update printers set MAKE = 'new make', MODEL = 'new model', PRODUCTTYPE = 'new product', PRINTERGROUP = 'new grogugp',

RE: Access SQL Question :(

2003-08-01 Thread Tim Heald
what the query looks like in the debug output? Wait, does CF 4.5 output that i forget. :-) If so, send that to the list. That would let us see what the dynamic query looked like when it failed i think, and we can go from there. mike - Original Message - From: Tim Heald [EMAIL

RE: Access SQL Question :(

2003-08-01 Thread Tim Heald
Tim -Original Message- From: Tim Heald [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 9:48 AM To: CF-Talk Subject: RE: Access SQL Question :( The query you see is my output from the variable I created containing the SQL statement. Man I hate access. Tim -Original Message

RE: Access SQL Question :(

2003-08-01 Thread Tim Heald
in the details. That might be a better clue. -Mark -Original Message- From: Tim Heald [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 8:19 AM To: CF-Talk Subject: Access SQL Question :( Evening, I am trying to work out an update statement for Access. It's on CF 4.5. I am

Hosting

2003-07-27 Thread Tim Heald
Hey Kids, Well I rebuilt the server, and I bought a APC UPS solution. So I am ready to start hosting. I am looking for a few people (3-5) to host for testing. First 5 people that come along get 1 SQL Server ds, CFMX, ASP, and 50 megs of space. Should be decent for a dev environment I

Hosting Revisited.

2003-07-27 Thread Tim Heald
I need one more person to test out my servers. I really would like it to be some one that's going to hammer it. Flash Remoting, CFCs, and Web Services will need to be tested hard. Let me know if your interested Tim --- [This E-mail scanned for viruses by Declude Virus]

Re: Interface Assessment

2003-07-16 Thread Tim Heald
you sent localhost man. - Original Message - From: Chunshen (Don) Li [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 11:27 PM Subject: Interface Assessment Thank you very much. The links are very interesting. Also, if you wouldn't mind taking another

Re: iframe form javascript

2003-07-14 Thread Tim Heald
First thing I would do would be to change the field name to something other than Image. IMage is an object in js and that may be a cause for your problem. Even if you just try changing all refrences to it to img or imgField or something. Tim - Original Message - From: Stan Winchester

Re: String help

2003-07-09 Thread Tim Heald
You want mid(). I think its mid(string, start, number of characters) So something like myString = mid(myString, 4, 4); SHould be close, don't have the studio help files handy. Tim - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003

Re: String help

2003-07-09 Thread Tim Heald
umm mid(myString, 4, 3) that should read. Tim - Original Message - From: Tim Heald [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 8:50 PM Subject: Re: String help You want mid(). I think its mid(string, start, number of characters) So something like

RE: JSP output to CF variable in MX?

2002-05-10 Thread Tim Heald
Maybe try cfsavecontent? Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 11:12 PM To: CF-Talk Subject: JSP output to CF variable in MX? Ok, after a few hours of exposure

RE: Fusebox and URL protection

2002-05-05 Thread Tim Heald
and seeing if we can't take it to the next level. We may change this to a cfx tag eventually to harden the encryption some. I hope it helps. I know I use it on my site, and if I didn't have the code that built the urls or the key I wouldn't be able to do anything with them. Tim Heald ACP/CCFD

RE: Fusebox and URL protection

2002-05-05 Thread Tim Heald
I had made a small oversight, and not set up the newer version of this UDF for download. I have done that now, and I will be rewriting the demo app to show how to use the check sum also. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Tim Heald

RE: Fusebox (was: I like CFMX)

2002-04-30 Thread Tim Heald
this conversation keeps the rest of you up this evening? Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Hal Helms [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 2:23 AM To: CF-Talk Subject: RE: Fusebox (was: I like CFMX) Jennifer, I'm unclear

RE: Fusebox (was: I like CFMX)

2002-04-30 Thread Tim Heald
Damnit your C level. you can be late for work. I on the other hand have to be in NLT 9 or I get in trouble. Something tells me you'll win :) Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Tuesday

RE: Fusebox (was: I like CFMX)

2002-04-30 Thread Tim Heald
Wow you read me just like that huh? Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 2:45 AM To: CF-Talk Subject: Re: Fusebox (was: I like CFMX) ahhh just go get a crisp cold

RE: Fusebox (was: I like CFMX)

2002-04-30 Thread Tim Heald
Yippee I win (umm ok so I get to be the most tired at work tomorrow) Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 2:55 AM To: CF-Talk Subject: RE: Fusebox (was: I like CFMX

RE: Fusebox (was: I like CFMX)

2002-04-30 Thread Tim Heald
Someone on another list I subscribe to has as his signature saying: The only good things to ever come from Berkley were BSD Unix and LSD Haven't been there so I wouldn't know if anything else good came from there :) Tim Heald ACP/CCFD Application Development www.schoollink.net -Original

RE: Dreamweaver MX Functionality?? (was: CFMX etc etc)

2002-04-29 Thread Tim Heald
It's being released as Homesite +. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Mueller, Ben [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 2:32 PM To: CF-Talk Subject: RE: Dreamweaver MX Functionality?? (was: CFMX etc etc) Maybe

RE: Where's Advanced Security?

2002-04-29 Thread Tim Heald
Yes CF can make LDAP calls to active directory, part of AD is a regular directory server. We are actually using it in different systems (Netscape Directory Server, and AD) for IP Phone systems. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Jon

Homestie + (was CFMX = Neo ?)

2002-04-29 Thread Tim Heald
with. I mean writing code that leverages web services is a joke. Lets recap: Homesite + is the direct replacement for CF 5 Studio/Homesite. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: John Wilker [mailto:[EMAIL PROTECTED]] Sent: Monday

RE: I like CFMX

2002-04-29 Thread Tim Heald
Nested layouts, circuits, MVC implementation in CF. A tried and true development process. Huge amounts of community support. I don't know about you, but it helps me a lot. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Matt Liotta [mailto

RE: I like CFMX

2002-04-29 Thread Tim Heald
are lessons you NEED, and a whole lot easier to learn than grabbing a copy of code complete and just figuring it out. Now I didn't go to some college for four years and learn all these things. Maybe if I had I would see it differently, but I doubt it. Tim Heald ACP/CCFD Application Development

RE: Fusebox (was: I like CFMX)

2002-04-29 Thread Tim Heald
is a mature, open, standards based methodology. It doesn't even only support CF, but has PHP and JSP implementations as well. If you go to http://www.halhelms.com/index.cfm?fuseaction=newsletters.detail and read the conversations newsletter there it explains more about it. Tim Heald ACP/CCFD

RE: Fusebox (was: I like CFMX)

2002-04-29 Thread Tim Heald
Since I am reasonably new to this list, and I am in the process of working on something, I will bow to your knowledge about our detractors Ken. Another time perhaps :) Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Ken Wilson [mailto:[EMAIL

RE: Fusebox (was: I like CFMX)

2002-04-29 Thread Tim Heald
in an inquiry (taken from dictionary.com) Now I think FB is all of these things. I may be wrong. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:02 PM To: CF-Talk Subject: RE: Fusebox

RE: Fusebox (was: I like CFMX)

2002-04-29 Thread Tim Heald
It's coming. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:17 PM To: CF-Talk Subject: RE: Fusebox (was: I like CFMX) Fusebox just tells you how to organize your code Me

RE: Fusebox (was: I like CFMX)

2002-04-29 Thread Tim Heald
. We have, as a community, matured. There are plenty of papers, sample apps, and demonstrations available now. My 2 cents. And I am really going to pull back from this topic now. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Matt Liotta [mailto

RE: Fusebox (was: I like CFMX)

2002-04-29 Thread Tim Heald
as a community get better. Why does CF have a bad rap? Because there's a lot of bad CF out there, and a lot of misinformation. Well I see a lot of misinformation about FB as well. Damn I really need to get this in digest mode so I can get some work done :) Tim Heald ACP/CCFD Application Development

RE: Fusebox (was: I like CFMX)

2002-04-29 Thread Tim Heald
Ok Matt, For the beginner my friend, in layman's terms. Seriously. I am paying attention, and I am never so close minded that I cannot be swayed, but truth be told I heard a bunch of buzzwords, and some stuff that I should probably know more about. Tim Heald ACP/CCFD Application

XML Questrion

2002-04-29 Thread Tim Heald
. a CFSCRIPT tag beginning on line 10, column 10. Tim Heald ACP/CCFD Application Development www.schoollink.net __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

RE: Fusebox (was: I like CFMX)

2002-04-29 Thread Tim Heald
Sure I have several NDAs I operate under. I have no problem signing one more. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 12:37 AM To: CF-Talk Subject: RE: Fusebox (was: I

RE: XML Questrion

2002-04-29 Thread Tim Heald
nm I got it. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Tim Heald [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 12:39 AM To: CF-Talk Subject: XML Questrion Hey folks I am trying to build a query object from a record set using CFMX

RE: Hatfields and the McCoys

2002-04-29 Thread Tim Heald
go shave yer head, or like poke another hole in yerself ya freak. hehe oi! critz Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Critz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 1:07 AM To: CF-Talk Subject: Hatfields and the McCoys

RE: Fusebox (was: I like CFMX)

2002-04-29 Thread Tim Heald
a more updated one that a gentleman named Lee Borkman added a hash/checksum to if your interested. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Jennifer Larkin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 1:07 AM To: CF-Talk Subject: RE

RE: Fusebox (was: I like CFMX)

2002-04-29 Thread Tim Heald
be better if you gave a brief definition of each term, then I can tell you what in FB I see fitting where. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 1:52 AM To: CF-Talk Subject: RE

RE: Get list of tables from a SQL Server DB

2002-04-25 Thread Tim Heald
CFQUERY name=getTables datasource=#dsdata# Select name From systables Where xType = u /CFQUERY CFSET tableList= valueList(getTables.name) Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Vishal Narayan [mailto:[EMAIL PROTECTED]] Sent: Friday, April

RE: Get list of tables from a SQL Server DB

2002-04-25 Thread Tim Heald
ooops you should remove that lt; from before the From statement Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Tim Heald [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 12:58 AM To: CF-Talk Subject: RE: Get list of tables from a SQL

RE: Performance boost with Upgrade to dual processor ??

2002-04-24 Thread Tim Heald
on windows 2000 that you were using both processors full time? I may be wrong but I would just like to see it somewhere. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 3:10 AM To: CF

RE: Performance boost with Upgrade to dual processor ??

2002-04-24 Thread Tim Heald
I know for a fact that SQL 7 can take advantage multiple processors. You have to be careful though, I am not sure but you may have to get another license. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: John Innit [mailto:[EMAIL PROTECTED]] Sent

RE: Performance boost with Upgrade to dual processor ??

2002-04-24 Thread Tim Heald
Microsoft has seen. Typical large servers are half this size or less. With time, Microsoft SQL Server, Windows 2000, and hardware technology will evolve to support even larger configurations. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Tim Heald

RE: Performance boost with Upgrade to dual processor ??

2002-04-24 Thread Tim Heald
, damn it's late :) Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 3:25 AM To: CF-Talk Subject: Re: Performance boost with Upgrade to dual processor ?? Tim All that says

RE: Performance boost with Upgrade to dual processor ??

2002-04-24 Thread Tim Heald
See now I am not sure how this can be true. Paul Hastings sent me a response about checking the task manager and he is right. both processors are responding whenever I do something, and neither is maxed out. Attached find a copy of the stats. Tim Heald ACP/CCFD Application Development

RE: Performance boost with Upgrade to dual processor ??

2002-04-24 Thread Tim Heald
It stripped the attachment. This url will show the image: HTTP://loathe.mine.nu/processorUsage.jpg Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Tim Heald [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 4:08 AM To: CF-Talk Subject

RE: Performance boost with Upgrade to dual processor ??

2002-04-24 Thread Tim Heald
and applications. Symmetric multiprocessing allows multiple processors to work in parallel and still use a single operating system image, common memory, and disk I/O resources. link: http://www.nswc.navy.mil/cosip/nov97/osa1197-1.shtml Tim Heald ACP/CCFD Application Development www.schoollink.net

RE: Performance boost with Upgrade to dual processor ??

2002-04-24 Thread Tim Heald
Oh, well that's a lot lower level than the discussion we were having. The person said that SQL Server or Windows 2000 in general would not take advantage of multiple processors until the primary had maxed out. That's all I was arguing. Tim Heald ACP/CCFD Application Development

RE: Performance boost with Upgrade to dual processor ??

2002-04-24 Thread Tim Heald
Also CF is running as multiple services, and it has to be running multiple threads for each of these otherwise you would have to wait for one request to be complete before you could respond to another correct? Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message

RE: Work around fro LDAP

2002-04-24 Thread Tim Heald
If you are using basic security you can just use a password, no login. If you are using advanced security then CF 5 can authenticate to LDAP, or SQL. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: LANCASTER, STEVEN M. (JSC-OL) (BAR) [mailto

RE: Macromedia XML feed contest

2002-04-24 Thread Tim Heald
nda nda arrgghh Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 3:44 PM To: CF-Talk Subject: RE: Macromedia XML feed contest I think they meant to have it be used in FLASH

RE: Macromedia XML feed contest

2002-04-24 Thread Tim Heald
Not talking about flash. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 3:53 PM To: CF-Talk Subject: RE: Macromedia XML feed contest No NDA issues here ... flash MX

RE: SQL Booger of a query

2002-04-24 Thread Tim Heald
Look in the books online at cursors. I am still only learning them myself, but they will allow you to do this. If you get the SQL below working let me know, because that's just cool. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Jerry Johnson

RE: Work around fro LDAP

2002-04-24 Thread Tim Heald
Hmmm, We always install RDS when we first install, and it's been a while since I have had to do a Solaris install. Can't you hit enter without any ip? Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: LANCASTER, STEVEN M. (JSC-OL) (BAR

RE: Macromedia XML feed contest

2002-04-24 Thread Tim Heald
me neither :) Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Neil Clark - =TMM= [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 4:06 PM To: CF-Talk Subject: RE: Macromedia XML feed contest I cant think (know), of any product which you

RE: CFLOOP sort order

2002-04-24 Thread Tim Heald
of the array or the row count of the query. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Jake McKee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 9:08 PM To: CF-Talk Subject: CFLOOP sort order Is there an easy way to spit out

RE: RE: Encrypting Numeric ID's

2002-04-23 Thread Tim Heald
Hi, If you are on CF 5 you can use a UDF I created called urlEncrypt. Here it is. For directions go to http://loathe.mine.nu, or shoot me an email. !--- ** urlEncrypt/urlDecrypt UDF Template ** By Tim Heald ([EMAIL PROTECTED]) and Lee

RE: Keeping track of logged-in users...

2002-04-23 Thread Tim Heald
if they are permitted to view/use the specific function you are using security on. Tim Heald ACP/CCFD Application Development www.schoollink.net -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 7:17 AM To: CF-Talk Subject: Re: Keeping track of logged-in users

New CFUG forming in Fayetteville, NC

2002-04-20 Thread Tim Heald
night all. Tim Heald ACP/CCFD Application Development www.schoollink.net __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com

Re: Encryption differences in ColdFusion 4.5 and 5.0?

2001-08-27 Thread Tim Heald
Single quotes would screw your sql all up man. - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, August 27, 2001 11:08 PM Subject: RE: Encryption differences in ColdFusion 4.5 and 5.0? The issue with the out-of-the-box ColdFusion

Re: setting up win2000 ftp

2001-08-25 Thread Tim Heald
FTP is built in to win2000 server. Al you have to do is turn on the service and then use your nt authentication. Well at least if you are using IIS. If not there are bunches of free, easy to use ftp servers on the cnet site. - Original Message - From: PB [EMAIL PROTECTED] To: CF-Talk

Re: It Matchs, but CFIF says it doesn't

2001-08-24 Thread Tim Heald
If you are pulling the value of AD_SEC_LEV from a database at any time, make sure you trim the value. I have encountered many situations where there are leading or trailing spaces and it throws off my checks. A little debug trick we use is when we out put variables to see their value we wrap