Re: Can this be improved

2012-12-03 Thread Cameron Childress
On Sat, Dec 1, 2012 at 4:43 PM, Bruce Sorge sor...@gmail.com wrote: I did not use stored procs because I have having issues with making them on MySQL since I am new to the db, so I know that is one improvement that I could make. In addition to casey's comments, I would generally say that

CF8 - sending mail via exchange?

2012-12-03 Thread Pete Ruckelshaus
Do I need to do anything special or use any of the cfexchange tags in order to send email via a MS Exchange server? Thanks Pete ~| Order the Adobe Coldfusion Anthology now!

Re: CF8 - sending mail via exchange?

2012-12-03 Thread Dave Watts
Do I need to do anything special or use any of the cfexchange tags in order to send email via a MS Exchange server? No, as long as your Exchange server will accept SMTP mail from your CF server, all you need to use is CFMAIL. Very often, Exchange servers are configured to limit or block SMTP

Re: CF8 - sending mail via exchange?

2012-12-03 Thread Russ Michaels
I have had lots of hassle doing this due to restrictions on the exchange server, exchange won't allow you to relay anonymously by default, you must send.via a specific user also you may need to get the sysadmin to allow pop or imap, the default tends to be mapi. Regards Russ Michaels

Re: Can this be improved

2012-12-03 Thread Bryan Stevenson
Hey All, I'm curious as to what is behind statements like Cameron's (not picking on you Cameron.just a good example of what I'm talking about) ORM, on the other hand, makes your code WAY WAY WAY more portable, and (once you are past the learning curve) much faster to do development and

list status

2012-12-03 Thread Dan Baughman
Hey guys, This list has served me well for a number of years but I'd like to unsubscribe... you can't unsubscribe without signing into the houseoffusion site and the forgot password functionality is not working. Does anyone know how to unsub from this list? Thanks

Re: list status

2012-12-03 Thread Matt Quackenbush
Logging onto the site is the only way that I know of to officially unsubscribe. Of course you could always just create a filter rule to catch anything from HoF and delete it. That would be functionally similar. :-) On Mon, Dec 3, 2012 at 10:43 AM, Dan Baughman dan.baugh...@gmail.comwrote:

CFWindow Timing Issue

2012-12-03 Thread James Steubing
I am incorporating CFWindow and coldfusion.window functions into my site and have them working very well except for one issue. I would like to execute some javascript after the cfwindow fully opens but everything I am doing appears to execute after the popup appears but before the coldfusion

hmailserver Coldfusion

2012-12-03 Thread te...@it-werks.com te...@it-werks.com
Anyone have any experience, comments using hmailserver with Coldfusion? Terry ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

write query result to file

2012-12-03 Thread John M Bliss
Hi! Time-back-way-back, the best/easiest way to write a cfquery result to a file was to use cfwddx. What's the current best/easiest way? (So that it's easy to read the file and re-instantiate the result.) -- John Bliss - http://about.me/jbliss

Re: write query result to file

2012-12-03 Thread Raymond Camden
cfwddx still works, doesn't it? Why not just use it? Sure, XML is a bit fat, but if you just want something quick and dirty, there is no reason not to use it, especially if you are the only reader. Outside of that - look at serializeJSON/deserializeJSON. On Mon, Dec 3, 2012 at 11:26 AM, John M

Re: write query result to file

2012-12-03 Thread John M Bliss
Perfect. Thanks! On Mon, Dec 3, 2012 at 11:34 AM, Raymond Camden raymondcam...@gmail.comwrote: cfwddx still works, doesn't it? Why not just use it? Sure, XML is a bit fat, but if you just want something quick and dirty, there is no reason not to use it, especially if you are the only

Re: hmailserver Coldfusion

2012-12-03 Thread Russ Michaels
have used it many times. But what mail server you use is pretty immaterial if the only requirement is an SMTP server as they all work the same. Hmail is fine for a basic smtp server, On Mon, Dec 3, 2012 at 5:19 PM, te...@it-werks.com te...@it-werks.com te...@it-werks.com wrote: Anyone

list of countries and territories

2012-12-03 Thread Greg Morphis
Does anyone have or know of a good list of delimited countries and territories I can use and import into my DB? Thanks ~| Order the Adobe Coldfusion Anthology now!

Re: CFWindow Timing Issue

2012-12-03 Thread James Steubing
I am incorporating CFWindow and coldfusion.window functions into my site and have them working very well except for one issue. I would like to execute some javascript after the cfwindow fully opens but everything I am doing appears to execute after the popup appears but before the

Re: Can this be improved

2012-12-03 Thread Russ Michaels
ORM should allow your app to run on any database on any platform (MySQL, MSSQL, Oracle) without you having to change any code. Although it doesn't cover all possible queries you may ever need to write, you may still find some instances where ORM doesn't do what you need. On Mon, Dec 3, 2012 at

Re: list of countries and territories

2012-12-03 Thread Russ Michaels
http://countrylist.net/ On Mon, Dec 3, 2012 at 6:43 PM, Greg Morphis gmorp...@gmail.com wrote: Does anyone have or know of a good list of delimited countries and territories I can use and import into my DB? Thanks ~|

Re: Can this be improved

2012-12-03 Thread Cameron Childress
On Mon, Dec 3, 2012 at 11:36 AM, Bryan Stevenson br...@electricedgesystems.com wrote: So what is it about ORM that makes this WAY WAY WAY better I didn't say better, actually, I said portable Why is ORM (or ORM with CF) the magic bullet? Simple real life example? There is no such thing

Re: list of countries and territories

2012-12-03 Thread Greg Morphis
That is awesome.. thanks Russ! On Mon, Dec 3, 2012 at 1:03 PM, Russ Michaels r...@michaels.me.uk wrote: http://countrylist.net/ On Mon, Dec 3, 2012 at 6:43 PM, Greg Morphis gmorp...@gmail.com wrote: Does anyone have or know of a good list of delimited countries and territories I

Re: hmailserver Coldfusion

2012-12-03 Thread Al Musella, DPM
At 12:19 PM 12/3/2012, you wrote: Anyone have any experience, comments using hmailserver with Coldfusion? I use it.. Works nicely. Here is a short snippet that will create a new email address via coldfusion. (the domain must already be set up). cffunction name=createNewEmail

Re: Can this be improved

2012-12-03 Thread Bryan Stevenson
Thanks Russ.in my world that is not an issueand I'll stay custom if that's the only benefit. I can re-write T-SQL to PL-SQL in my sleep, but the only place I use PL-SQL is for custom system dev clientsand we are mostly moved to a product based company where our DBs of choice are

Re: Can this be improved

2012-12-03 Thread Bryan Stevenson
Thanks Cameronand sorry on the portable/better goof ;-) I'd say from what you and Russ have said that there is no urgent need for me to experience the learning curve. I'll swing back and take a peek so I am better informed and give it a fair kick at the can ;-) Cheers On Mon, 2012-12-03

Re: list status

2012-12-03 Thread Michael Dinowitz
I'll look at both the password mechanism as well as unsubscribe you. On Mon, Dec 3, 2012 at 11:43 AM, Dan Baughman dan.baugh...@gmail.comwrote: Hey guys, This list has served me well for a number of years but I'd like to unsubscribe... you can't unsubscribe without signing into the

RE: Can this be improved

2012-12-03 Thread Eric Roberts
I would agree...unless it is a really, really complex query that is just killing performance...I try and avoid SP's...they make life so much harder for debugging. I haven't jumped into ORM land yet...it's on the list. Three Ravens Consulting Eric Roberts

Re: CFWindow Timing Issue

2012-12-03 Thread Azadi Saryev
maybe a better approach would be to add cfset ajaxonload('name-of-js-function-to-execute') at the bottom of the page loaded in your cfwindow instance. this way it is guaranteed to run after the cfwindow content is loaded - setTimeout() will delay code execution, but does not guarantee that the