stored procedures

2004-08-26 Thread joe velez
hey this might sound lame to some of you that use stored procedures and i apologize, but what is the point or what is the benefit rather? from what i have read so far i havent seen a point, but maybe i just dont understand the concept completely. whats hard about saying cfquery.../ cfquery... /

RE: Farcry x SpeckCMS: The best CMS is....

2004-08-26 Thread Micha Schopman
There are more CMS systems written with CFML, do not forget PaperThin. 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] [Fast

Re: Help with setting up DSN

2004-08-26 Thread Andy Allan
If you've set up SQL Server to run in Windows authentication mode only, then you will get problems trying to create a DSN that points to SQL Server because the JDBC driver that ships with CFMX for SQL Server doesn't support Windows Authentication - it only supports Mixed Mode Authentication. Andy

Re: stored procedures

2004-08-26 Thread Steven Brownlee
Stored procedures are not meant to replace simple queries that have negligible affect on the server - queries that return a small amount of rows, or queries on tables with few indices.However, when your application becomes heavily data-dependant and complex then moving those queries to the

Sendinf Plain Text and HTML with cfmail

2004-08-26 Thread simmyana a
Hi, i want to send both plain text and HTML in a mail. I searche dthe web and found the following code cfset boundary = CreateUUID() cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test server=localhost cfmailparam name=Content-Type value=multipart/alternative; boundary=#boundary#

Sendinf Plain Text and HTML with cfmail

2004-08-26 Thread simmyana a
Hi, i want to send both plain text and HTML in a mail. I searche dthe web and found the following code cfset boundary = CreateUUID() cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test server=localhost cfmailparam name=Content-Type value=multipart/alternative; boundary=#boundary#

querying an array?

2004-08-26 Thread mc
I've got a shopping cart that is in an array (stored in a session). It looks like this: ItemQuantityType - pepper2green avocado 1green carrot3not green eggplant1not green celery5green What I need to do is figure out the total quantity of not green items and green

Using both Plain Text and HTML in cfmail

2004-08-26 Thread simmyana a
Hi, i want to send both plain text and HTML in a mail. I searche dthe web and found the following code cfset boundary = CreateUUID() cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test server=localhost cfmailparam name=Content-Type value=multipart/alternative; boundary=#boundary#

Both Plain Text and HTML in cfmail

2004-08-26 Thread simmyana a
Hi, i want to send both plain text and HTML in a mail. I searche dthe web and found the following code cfset boundary = CreateUUID() cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test server=localhost cfmailparam name=Content-Type value=multipart/alternative; boundary=#boundary#

RE: Both Plain Text and HTML in cfmail

2004-08-26 Thread d.a.collie
Any help? http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid= 3 http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid =3threadid=875453 threadid=875453 Watch for the wrap. -- dc [Todays Threads] [This Message] [Subscription] [Fast

Re: Both Plain Text and HTML in cfmail

2004-08-26 Thread simmyana a
Thanks for the help but link is not working Hi, i want to send both plain text and HTML in a mail. I searche dthe web and found the following code cfset boundary = CreateUUID() cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=test server=localhost cfmailparam

Javascript delete confirmation

2004-08-26 Thread Thane Sherrington
I know I've seen this on the list before, but I can't find it in the archives, and my mind is pulling a blank on this.How do I pop up a _javascript_ yes/no pop up when someone clicks on a delete button to delete a record? T [Todays Threads] [This Message] [Subscription] [Fast

RE: Javascript delete confirmation

2004-08-26 Thread d.a.collie
var answer = confirm('Do you want to delete'); if (answer) { //do delete action } -- dc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Javascript delete confirmation

2004-08-26 Thread Andy Allan
function confirmDelete(aURL) { if(confirm(Do you really want to delete?)) document.location=aURL; } Andy Quoting Thane Sherrington [EMAIL PROTECTED]: I know I've seen this on the list before, but I can't find it in the archives, and my mind is pulling a blank on this.How do I pop up a

RE: Both Plain Text and HTML in cfmail

2004-08-26 Thread d.a.collie
http://tinyurl.com/625zp... does that work? -- dc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Both Plain Text and HTML in cfmail

2004-08-26 Thread simmyana a
yeah that link is working but i am also facing the same problem and i am using Windows 2000 Server Cold Fusion v. MX 6.0 any help?? http://tinyurl.com/625zp... does that work? -- dc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and

RE: stored procedures

2004-08-26 Thread Micha Schopman
Stored procedures are NOT pre-compiled. This is a common made mistake. Only the execution plan gets cached, but the stored procedure is compiled upon execution. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort

Re: Both Plain Text and HTML in cfmail

2004-08-26 Thread Daniel Lancelot
I have a (incomplete but working) set of custom tags that I created to do this if you contact me offlist I can forward them to you (danlance at runbox dot com) Cheers Dan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Farcry x SpeckCMS: The best CMS is....

2004-08-26 Thread Marco Antonio C. Santos
OK Micha but inexpensive, free, cheap maybe only Farcry and SpeckCMS On Thu, 26 Aug 2004 08:22:39 +0200, Micha Schopman [EMAIL PROTECTED] wrote: There are more CMS systems written with CFML, do not forget PaperThin. Micha Schopman Software Engineer Modern Media, Databankweg 12 M,

Hal Helms Java For CF Developers class?

2004-08-26 Thread Lofback, Chris
Is there anyone on the list that has attended any of Hal Helms' training classes?I am interested in his Java For CF Developers but would like feedback from anyone who has taken it or any of his other classes. Also, the only contact info on his web site is an email address and so far I am unable

Re: stored procedures

2004-08-26 Thread Ian Sheridan
Can you really say that for Oracle? Point out any material on the net that talks about it? I'm actually curious about this. So if you have any links that talk further about this that would be great. Ian -- Ian Sheridan http://www.savagevines.com -- -

RE: Javascript delete confirmation

2004-08-26 Thread Adrian Lynch
Or a shorter inline version... input type=submit name=submit value=Delete > confirm('You sure?') / Ade -Original Message- From: Andy Allan [mailto:[EMAIL PROTECTED] Sent: 26 August 2004 11:22 To: CF-Talk Subject: Re: _javascript_ delete confirmation function confirmDelete(aURL) {

Re: querying an array?

2004-08-26 Thread Ian Sheridan
why don't you just place the array in a query and query that query? (might be overkill though) or loop through the array and output only the rows that don't have Green in row[n][3] Ian -- Ian Sheridan http://www.savagevines.com -- - Original Message

RE: Both Plain Text and HTML in cfmail

2004-08-26 Thread Craig Dudley
Any reaason you're not using the built-in cfmailpart tags? cfmail from= to= subject= charset=UTF-8 cfmailpart type=text wraptext=74 /cfmailpart cfmailpart type=html /cfmailpart /cfmail -Original Message- From: simmyana a [mailto:[EMAIL PROTECTED] Sent: 26 August 2004 11:51 To:

RE: Javascript delete confirmation

2004-08-26 Thread Andy Allan
Yup, definately shorter but not as reusable. Fire the function I posted into a commonfunctions .js file, and have it included in your page and you can use it any time you need. Andy Quoting Adrian Lynch [EMAIL PROTECTED]: Or a shorter inline version... input type=submit name=submit

RE: Javascript delete confirmation

2004-08-26 Thread Adrian Lynch
I'd have to disagree with this one. I'm all for reusable code but I think in this instance it's not needed. I guess if the URL is being changed from that of the action attribute of the form then maybe it's ok, but other than that I'd rather just have the code in the onclick of the button/form tag.

RE: Javascript delete confirmation

2004-08-26 Thread Andy Allan
That's fair enough. I've always got it in my apps because in the large majority of cases I've got delete actions for numerous things, whether it be users, articles, images, whatever ... so it definately comes in handier in that situaiton. Andy Quoting Adrian Lynch [EMAIL PROTECTED]: I'd have

RE: Photo Album Modification

2004-08-26 Thread Ken Ferguson
Isn't this actually just using the target=_blank attribute though? All you've done here, as I see it, is to not use the target attribute in the tag, but use your _javascript_ to add the target attribute to the tag. Now I haven't really gotten into xhtml compliance, but I don't understand the logic

RE: stored procedures

2004-08-26 Thread Bill Grover
True, but coming up with the execution plan is what takes the longest and has the greatest impact on the server.So by having a SP once it is executed and that execution plan is cached they become very quick. For example, I have a SP that uses about 10 select statements to retrieve data from 4

Safari cache issue

2004-08-26 Thread Andrzej Michalski
We have a CFMX application which employs a frameset. A main frame for the site and a sub frame which acts like a shopping basket. The idea is that the customer clicks on items within the main frame, which in turn reloads the sub frame. This action (via a url variable) allows us to append to a

Re: stored procedures

2004-08-26 Thread S . Isaac Dealey
hey this might sound lame to some of you that use stored procedures and i apologize, but what is the point or what is the benefit rather? from what i have read so far i havent seen a point, but maybe i just dont understand the concept completely. whats hard about saying cfquery.../

Re: Farcry x SpeckCMS: The best CMS is....

2004-08-26 Thread S . Isaac Dealey
Well if cheap qualifies, there are a handfull of those... SparkPlug for instance... I don't care for any of them myself... at least none of the ones I've looked at. Haven't made the time to install FarCry yet... never heard of Speck. OK Micha but inexpensive, free, cheap maybe only Farcry

Re: querying an array?

2004-08-26 Thread Charlie Griefer
(assuming your cart is an array of structures...) cfscript var green = 0; var not_green = 0; for (i=1; i LTE arrayLen(session.cartArrayName); i=i+1) { if (cartArrayName[i].Type is green) { green = green + 1; } else { not_green = not_green + 1; } } /cfscript On Thu, 26 Aug 2004 11:33:51

RE: stored procedures

2004-08-26 Thread Adrian Lynch
That is where the benefit of SP's are, that once run all future runs are significantly faster. I think that this isn't always true. It depends what statements are within the SP. It's possible that an SP could produce various execution plans and the one that's cached might not be the best one for

Re: Javascript delete confirmation

2004-08-26 Thread Charlie Griefer
I'm going to go with Andy on this one only because I've been 'taught' not to put an onclick event on a submit button...that a submit button should trigger an onsubmit. Of course, that doesn't mean you still can't keep it inline...but i'd put it in the form tag using the onsubmit event. On Thu,

RE: stored procedures

2004-08-26 Thread Micha Schopman
Within SQL Server the execution plan is only re-generated on request when the stored procedure contains statements which dynamically change the stored procedure. Input and output parameters, have no effect on the execution plan, they are pre-cached also even if they are not used. I have increased

Re: stored procedures

2004-08-26 Thread G
Well, just like any programming solution, an SP can be inefficient if it is poorly written. Relational DBMS's are very good at performing just that: relational database queries. We found terrific performance enhancements when we converted long, iterative CF processes into relational stored

RE: Javascript delete confirmation

2004-08-26 Thread Adrian Lynch
Who taught you that then and why? :OD Ade -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: 26 August 2004 14:42 To: CF-Talk Subject: Re: _javascript_ delete confirmation I'm going to go with Andy on this one only because I've been 'taught' not to put an onclick

RE: Safari cache issue

2004-08-26 Thread Gaulin, Mark
Try adding this header (which is a real header, not a meta-equiv header) cfheader name=Cache-Control value=no-cache Mark -Original Message- From: Andrzej Michalski [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 9:06 AM To: CF-Talk Subject: Safari cache issue We have a

RE: stored procedures

2004-08-26 Thread Micha Schopman
And then there's also the fact that stored procedures are immune to SQL injection attacks. One sidenote, it is possible to use SQL Injection attacks on SQL Server while still using stored procedures. For example using Full Text Indexing commands, it is fairly simple to provide a SQL injection

CFMX 6.1 Updater Now Available

2004-08-26 Thread dcooper
http://www.macromedia.com/support/coldfusion/ts/documents/cfmx61_updater.htm Think of this as ColdFusion MX 6.1+.It's a recommended update.We just wrapped up the Beta program, it's good solid stuff, and basically a single-click install. New for this Updater, if you're running in a

Re: stored procedures

2004-08-26 Thread Adam Churvis
You're absolutely right, Adrian. Let's say you create a stored procedure on SQL Server 2000 that takes a parameter.The first time this sp is executed, the database will settle on a lost-cost execution plan, compile it, and then reuse that plan every other time the sp is executed (until SQL2K is

RE: stored procedures

2004-08-26 Thread S . Isaac Dealey
Okay... without going out of your way to provide a means of creating sql injection attacks. :P Seven years doing this work, I've only ever heard of one person actually using SQL Server's full-text indexes (and that was someone I wasn't working with)... doesn't mean that people aren't, but my

Gmail Accounts

2004-08-26 Thread Ryan Mannion
Who wants one? I have 4. First 4 to respond get them. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Gmail Accounts

2004-08-26 Thread d.a.collie
memememe -Original Message- From: Ryan Mannion [mailto:[EMAIL PROTECTED] Sent: 26 August 2004 15:13 To: CF-Talk Subject: Gmail Accounts Who wants one? I have 4. First 4 to respond get them. _ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: Safari cache issue

2004-08-26 Thread Andrzej Michalski
Mark, you're a star! This works perfectly... Try adding this header (which is a real header, not a meta-equiv header) cfheader name=Cache-Control value=no-cache Mark -Original Message- From: Andrzej Michalski [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004

Re: querying an array?

2004-08-26 Thread Dan O'Keefe
Instead of just incrementing the counter, wouldn't he need to add cartArrayName[i].Number to the var? Dan - Original Message - From: Charlie Griefer [EMAIL PROTECTED] Date: Thu, 26 Aug 2004 06:39:17 -0700 Subject: Re: querying an array? To: CF-Talk [EMAIL PROTECTED] (assuming your cart

RE: Gmail Accounts

2004-08-26 Thread Ken Ferguson
Still got em? Ken Ferguson Fitz and Floyd http://www.fitzandfloyd.com http://www.fitzandfloyd.com http://www.exclusivelyfitz.com http://www.exclusivelyfitz.com/ http://stores.ebay.com/fitzandfloydscharmingtails _ From: Ryan Mannion [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26,

RE: Gmail Accounts

2004-08-26 Thread Ben Forta
Maybe it is just me, but honestly, I don't quite get the gmail hype. But, having said that, 3 invites available ... reply *OFF LIST* please. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 10:20 AM To: CF-Talk Subject: RE: Gmail Accounts memememe

Mail of the G

2004-08-26 Thread Rob
In a mad attempt to flood Gmail with only those who write cf code, I too have a few gmail invites to offer - let me know if you want one (people who use software I help develop get preference obviously) :-D -- ~The cfml plug-in for eclipse~ http://cfeclipse.tigris.org ~open source xslt IDE~

RE: Gmail Accounts - Enough already

2004-08-26 Thread Eric Jones
Ok just a question here. Which part of the take the gmail talk and offers to CF Community did we not understand? I'm all up for sharing, cause I learned that in kindergarten as well, but it's REALLY off topic for CF-Talk. ERJ -Original Message- From: Ken Ferguson [mailto:[EMAIL

Re: stored procedures

2004-08-26 Thread Adam Churvis
Input and output parameters, have no effect on the execution plan Actually, they often have a *huge* impact on how a query execution plan is compiled.My earlier post on this explains it a little. Respectfully, Adam Phillip Churvis Member of Team Macromedia Advanced Intensive Training: * C#

Re: stored procedures

2004-08-26 Thread Janet Schmitt
In Oracle, stored procedures are compiled when you create them (i.e. run the CREATE PROCEDURE/FUNCTION/PACKAGE/TRIGGER statement). The first time you call an Oracle Stored Procedure it is loaded into Oracle's memory (shared pool of the SGA).The stored procedure will stay there until it is

Calendar CFC, app, etc.

2004-08-26 Thread James Edmunds
Can anyone point to a recommended Calendar CFC, app, tags, etc.? I'm looking for something that will accommodate an admin for adding and editing, and will distinguish between events that recur and those that are one-time. I have several sites with calendars now, but always looking for the next

Re: Javascript delete confirmation

2004-08-26 Thread Stephen Moretti (cfmaster)
Charlie Griefer wrote: I'm going to go with Andy on this one only because I've been 'taught' not to put an onclick event on a submit button...that a submit button should trigger an onsubmit. Of course, that doesn't mean you still can't keep it inline...but i'd put it in the form tag using

Re: Gmail Accounts

2004-08-26 Thread Matthew Fusfield
I, too, have several gmail invites available, please email me offlist if anyone would like one. Matt On Thu, 26 Aug 2004 10:20:14 -0400, Ben Forta [EMAIL PROTECTED] wrote: Maybe it is just me, but honestly, I don't quite get the gmail hype. But, having said that, 3 invites available ... reply

Re: Safari cache issue

2004-08-26 Thread Dick Applebaum
Got a URL? I use routinely use frame like this on Safari without problems Dick On Aug 26, 2004, at 6:06 AM, Andrzej Michalski wrote: We have a CFMX application which employs a frameset. A main frame for the site and a sub frame which acts like a shopping basket. The idea is that the

Re: Javascript delete confirmation

2004-08-26 Thread Charlie Griefer
what Stephen said (except in all lowercase for XHTML compatibility):) On Thu, 26 Aug 2004 15:29:31 +0100, Stephen Moretti (cfmaster) [EMAIL PROTECTED] wrote: Charlie Griefer wrote: I'm going to go with Andy on this one only because I've been 'taught' not to put an onclick event on a submit

Re: querying an array?

2004-08-26 Thread Charlie Griefer
hmm...probably :) Guess I didn't look at it closely enough (it was well before my first cup of coffee...which is now sitting in front of me). Change: green = green + 1; To: green = green + cartArrayName[i].Quantity; ...and same for 'not_green'. Good catch :) On Thu, 26 Aug 2004 10:15:00

RE: stored procedures

2004-08-26 Thread Micha Schopman
As far as I know this was only the case with versions before SQL Server 2000, not with 2000, but the DBA here is gonna do some testing with it. I am curious if this is still the case. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax

Re: stored procedures

2004-08-26 Thread Jochem van Dieten
Janet Schmitt wrote: In Oracle, stored procedures are compiled when you create them (i.e. run the CREATE PROCEDURE/FUNCTION/PACKAGE/TRIGGER statement). The first time you call an Oracle Stored Procedure it is loaded into Oracle's memory (shared pool of the SGA).The stored procedure will

Open Source Poll Tag

2004-08-26 Thread Jake
Does anyone know of a good open source poll tag? I spent some time downloading and setting up a number of them I found on the MM Exchange and via Google, and was shocked at how bad some of them were. Most didn't function at all. Any pointers to good stuff would be much appreciated. At minimum,

Re: Open Source Poll Tag

2004-08-26 Thread Marco Antonio C. Santos
iPoll ColdFusion Poll System is cool... Look in dev exchange cheers On Thu, 26 Aug 2004 10:06:42 -0500, Jake [EMAIL PROTECTED] wrote: Does anyone know of a good open source poll tag? I spent some time downloading and setting up a number of them I found on the MM Exchange and via Google, and

SOT: take a long lunch today, boys and girls

2004-08-26 Thread Ray Champagne
Internet Meltdown taking place today: http://www.webprowire.com/summaries/855830.html Ray = Ray Champagne - Senior Application Developer CrystalVision Web Site Design and Internet Services 603.433.9559 www.crystalvision.org

Use CF to delete directory and files in it?

2004-08-26 Thread Phill B
I'm trying to find a way to delete a directory with files in it. cfdirectory requires the the directory to be empty before you delete it. What is the best way to delete all the files in the folder? -- Phillip B. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Unique cookie ID

2004-08-26 Thread Whittingham, P
Hi All, I have a situation in which we have users coming from aproxy server (using 1 IP) and we would like to know the unique users? Can this be done thru cookie or session vars. TIA, Patrick Whittingham _ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: Use CF to delete directory and files in it?

2004-08-26 Thread Mark A. Kruger - CFG
Create a batch file and use cfexecute. -Mark -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 10:36 AM To: CF-Talk Subject: Use CF to delete directory and files in it? I'm trying to find a way to delete a directory with files in it. cfdirectory

RE: Use CF to delete directory and files in it?

2004-08-26 Thread d.a.collie
dependant on platform and if you have access, you could cfexecute a batch file -- dc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

CF5 and CFMX storproc problem

2004-08-26 Thread Phill B
I have a site running on CF5 that makes calls to a store procedure. I put that code on a new server running CFMX and I get a permissions problem. Executing stored procedures is not allowed. The data sources are configured the same and use the same database user account to connect. The only thing

Re: Use CF to delete directory and files in it?

2004-08-26 Thread Charlie Griefer
cfdirectory (action="" returns a query object containing the files within the directory.You could just loop over that 'query' and use cffile with action="" prior to doing the cfdirectory with action=""> ? On Thu, 26 Aug 2004 10:36:10 -0500, Phill B [EMAIL PROTECTED] wrote: I'm trying to find a

Re: Use CF to delete directory and files in it?

2004-08-26 Thread S . Isaac Dealey
I'm trying to find a way to delete a directory with files in it. cfdirectory requires the the directory to be empty before you delete it. What is the best way to delete all the files in the folder? -- Phillip B. You might want to check the cf-talk archives -- I think I posted some code

RE: Use CF to delete directory and files in it?

2004-08-26 Thread S . Isaac Dealey
dependant on platform and if you have access, you could cfexecute a batch file Ick. s. isaac dealey954.927.5117 new epoch : isn't it time for a change? add features without fixtures with the onTap open source framework http://www.sys-con.com/story/?storyid=44477DE=1

RE: Use CF to delete directory and files in it?

2004-08-26 Thread S . Isaac Dealey
Ick. Create a batch file and use cfexecute. -Mark -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 10:36 AM To: CF-Talk Subject: Use CF to delete directory and files in it? I'm trying to find a way to delete a directory with files in it.

RE: Javascript delete confirmation

2004-08-26 Thread Adrian Lynch
lol, nice one. I use the onsubmit of the form tag, didn't think about the details earlier. Ade -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: 26 August 2004 15:56 To: CF-Talk Subject: Re: _javascript_ delete confirmation what Stephen said (except in all

RE: CF5 and CFMX storproc problem

2004-08-26 Thread Dave Watts
I have a site running on CF5 that makes calls to a store procedure. I put that code on a new server running CFMX and I get a permissions problem. Executing stored procedures is not allowed. The data sources are configured the same and use the same database user account to connect. The

RE: Using both Plain Text and HTML in cfmail

2004-08-26 Thread Mosh Teitelbaum
simmyana a wrote: i want to send both plain text and HTML in a mail. I searche dthe web and found the following code Are you using CF5 or CFMX?CFMX provides the ability to do this for you so you don't have to muck around with content boundaries and the like.See my May 2004 preso on SMTP and

OT: www.cfm-applications.com ???

2004-08-26 Thread Alexander Sherwood
OT here: Anyone know what happen to www.cfm-applications and/or its creator? I had it in my RSS feeds and its been erroring out for 7-10 days. Thanks. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CFMX 6.1 Updater Now Available

2004-08-26 Thread Thomas Chiverton
On Thursday 26 Aug 2004 15:04 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: http://www.macromedia.com/support/coldfusion/ts/documents/cfmx61_updater.ht m Great news, but do I really have to download it to read the install instructions ? -- Tom Chiverton Advanced ColdFusion Programmer Tel:

Re: CF5 and CFMX storproc problem

2004-08-26 Thread Phill B
Opps. I posted the old error. It is giving this one EXECUTE permission denied on object Both data sources allow stored procedures. - Original Message - From: Dave Watts [EMAIL PROTECTED] Date: Thu, 26 Aug 2004 11:56:54 -0400 Subject: RE: CF5 and CFMX storproc problem To: CF-Talk [EMAIL

Re: Both Plain Text and HTML in cfmail

2004-08-26 Thread tbuntel
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-pb3.htm#wp2732354 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Using both Plain Text and HTML in cfmail

2004-08-26 Thread Ray Champagne
Why not just use cfmailpart (if CFMX)?Am I missing something? Ray At 11:55 AM 8/26/2004, you wrote: simmyana a wrote: i want to send both plain text and HTML in a mail. I searche dthe web and found the following code Are you using CF5 or CFMX?CFMX provides the ability to do this for you so

RE: CFMX 6.1 Updater Now Available

2004-08-26 Thread Michael Dinowitz
FA writeup (issue coming out today) http://www.fusionauthority.com/Article1.cfm/ArticleID=4284 On Thursday 26 Aug 2004 15:04 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: http://www.macromedia.com/support/coldfusion/ts/documents/cfmx61_updater.ht m Great news, but do I really have to download

RE: CFMX 6.1 Updater Now Available

2004-08-26 Thread Michael Dinowitz
BTW, one of the fixes in this update handles the obscure cfid/cftoken null null bug. Now that's an annoying one. FA writeup (issue coming out today) http://www.fusionauthority.com/Article1.cfm/ArticleID=4284 On Thursday 26 Aug 2004 15:04 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

RE: Using both Plain Text and HTML in cfmail

2004-08-26 Thread Mosh Teitelbaum
Ray: That's exactly what slides 32 33 say to do (with sample code) 8^) -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ simmyana a wrote: i want to send both plain text and HTML in a mail. I searche dthe web and

Re: CFMX 6.1 Updater Now Available

2004-08-26 Thread Adrocknaphobia
No, you dont. http://www.macromedia.com/support/documentation/en/coldfusion/mx61updater/releasenotes_cfmx61_updater.html#installCFMXWindows -Adam - Original Message - From: Thomas Chiverton [EMAIL PROTECTED] Date: Thu, 26 Aug 2004 17:01:56 +0100 Subject: Re: CFMX 6.1 Updater Now

Re: Open Source Poll Tag

2004-08-26 Thread Jake .
iPoll ColdFusion Poll System is cool... Look in dev exchange Yeah iPoll is nice, but I don't think it allows for commercial usage. Of course, the tag is 3 years old, perhaps the author would be willing to modify that. Jake [Todays Threads] [This Message] [Subscription] [Fast

OT- What makes a blog a blog?

2004-08-26 Thread mayo
Is a fully hardcode page with blog entries written in the text editor a blog? Is a CMS which allows users to create and edit files but doesn't allow comments a blog? >From a developer's perspective: what makes a blog a blog? -- just curious [Todays Threads] [This Message] [Subscription]

UML Modeling

2004-08-26 Thread Dan O'Keefe
Any tool recomendations for modeling a MX app's CFC's? Not the Rational Rose level, something within reach. I see Tigris has ArgoUML Dan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: OT- What makes a blog a blog?

2004-08-26 Thread Charlie Griefer
I'd say it's any ongoing communication between a person (or parties) and the general public via the Web (the via the Web part makes the 'general public' part a given).I don't think a particular format has anything to do with it, although there are obviously some formats that are significantly more

Re: OT- What makes a blog a blog?

2004-08-26 Thread Nathan Strutz
google - define:blog http://www.google.com/search?q=define%3Ablog A blog is basically a journal that is available on the web. The activity of updating a blog is blogging and someone who keeps a blog is a blogger. Blogs are typically updated daily using software that allows people with little

Re: UML Modeling

2004-08-26 Thread Chris Johnston
On Thu, 26 Aug 2004 14:07:33 -0400, Dan O'Keefe [EMAIL PROTECTED] wrote: Any tool recomendations for modeling a MX app's CFC's? Not the Rational Rose level, something within reach. I see Tigris has ArgoUML Posiedon for UML Community Edition[1] - supports UML 1.4 diagrams and allows for java

RE: OT- What makes a blog a blog?

2004-08-26 Thread mayo
I know what a blog is used for, why it's being used, etc... I was just wondering what makes a blog a blog? What features make it a blog? Is it simply a CMS or are there other features that make it a blog? Does it need the ability to comment? Does it need a cute little calendar? The reason I

Re: OT- What makes a blog a blog?

2004-08-26 Thread Chris Johnston
On Thu, 26 Aug 2004 14:25:12 -0400, mayo [EMAIL PROTECTED] wrote: I was just wondering what makes a blog a blog? What features make it a blog? Is it simply a CMS or are there other features that make it a blog? Does it need the ability to comment? Does it need a cute little calendar?

Re: UML Modeling

2004-08-26 Thread Rob
I like ArgoUML - it has the ability to export to the XMI standard (which is xml). >From there you can XSLT your way to CFCs. It also keeps you from being tied to just the one product. (As an aside, I am, amongst other things, working on a xslt to translate an XMI to CFCs.) If you want flexabilty

CF Regex to JS Regex

2004-08-26 Thread Tangorre, Michael
Has anyone converted this to work with _javascript_? This is the Regex from the isURL() UDF from cflib. I use the isURL on the server side and wanted to add something similar on the slient side but keep fialing to convert it correctly.

SQL questions

2004-08-26 Thread Daniel Kessler
I have two questions. 1 - I have a list that I sort by last name (ORDER BY lname ASC).I don't have control over the data entry and noticed today that A-Z (uppercase) is before a-z (lowercase).Is there a way to get them to sort together (Aneka, botha,Sebrook, etc.)? 2 - I have a DEPARTMENT

Re: OT- What makes a blog a blog?

2004-08-26 Thread Jake .
On Thu, 26 Aug 2004 14:25:12 -0400, mayo [EMAIL PROTECTED] wrote: I think the only thing that makes a blog a blog is that it be an online journal, i.e., weblog. The technology that drives the blog, whether that be hard coded or via a CMS, is inconsequential to the content that is being presented

Re: CF Regex to JS Regex

2004-08-26 Thread Massimo Foti
I am in a hurry, but I have two suggestions: 1) Check this reference: http://devedge.netscape.com/library/manuals/2000/_javascript_/1.5/guide/regexp .html 2) DW's search replace internally use a _javascript_ 1.5 engine, it can be handy for testing RegExp's patterns visually

Re: SQL questions

2004-08-26 Thread Jeff Congdon
1. Try LCASE(lname) in the select statement 2. LIKE '%#people#%' -jc Daniel Kessler wrote: I have two questions. 1 - I have a list that I sort by last name (ORDER BY lname ASC).I don't have control over the data entry and noticed today that A-Z (uppercase) is before a-z (lowercase).Is

Webservice: argument type mismatch

2004-08-26 Thread Neculai Macarie
Hi! I'm using a webservice to send a fax and I'm getting an error when calling one of the functions: Could not perform web service invocation SendfaxEx_2 because java.lang.IllegalArgumentException: argument type mismatch If I refresh the page a couple of times (10 to 15 times) the error message

  1   2   3   >