anti-cfflush

2003-02-24 Thread Hugo Ahlenius
Hi, Am I missing something... ? If I may, please direct me to where I can do my homework... I thought it would be natural to have a tag that just deletes the current rendered page from memory, and starts off again. Kind of like cfflush, which flushes the page to the client, but instead flushes

Re: [OT] CSS Question

2003-02-24 Thread Jochem van Dieten
Taco Fleur wrote: Anyone know how to get rid of that inner border line that appears on a submit button when it is active?? Or even change the color? onClick=blur() Jochem ~| Archives:

Re: unexpeted result with cfqueryparam

2003-02-24 Thread Jochem van Dieten
Dina Hess wrote: But not when using cfqueryparam. Using cfqueryparam is meant to call the functionality of the database driver to do the escaping. Any escaping done by CF before that will only result in doubling the quotes twice, and therefore CF should do no escaping whatsoever of any value

RE: cfscript object array reference

2003-02-24 Thread Joe Eugene
can't cfdump COM objects ;(( Are you using CFMX or CF5? You dont need any COM objects for xml parsing in CFMX. Use cfInvoke and xmlParse.. If you are using CF5 .. objURL[i].text Are you sure.. you can't dump a RESULT from a COM Objects? objURL = objXMLDOM.getElementsByTagName(url); I dont

Re: cfscript object array reference

2003-02-24 Thread Taco Fleur
Hi Joe, Are you using CFMX or CF5? You dont need any COM objects for xml parsing in CFMX. Use cfInvoke and xmlParse.. Using CF5 If you are using CF5 .. objURL[i].text Are you sure.. you can't dump a RESULT from a COM Objects? Nope, can't dump COM objects with CFDUMP in CF 5 anyway. I

Re: CF-Talk: Digest every 6 hours

2003-02-24 Thread Robby L.
Sorry about the late reply, thanks Stephen, worked like a charm. Peter, you requested the correct code when it was found . it's below :o). One more question regarding xml /cfmx, is I may.. I have the following loop.. cfscript for (i=1; i lte arraylen(count_dropdowns_t); i=i+1) {

Re: anti-cfflush

2003-02-24 Thread mark brinkworth
In CFMX you could do this cfset GetPageContext().getOut().clearBuffer() Cheers, Mark --- Hugo Ahlenius [EMAIL PROTECTED] wrote: Hi, Am I missing something... ? If I may, please direct me to where I can do my homework... I thought it would be natural to have a tag that just deletes

Re: anti-cfflush

2003-02-24 Thread Jochem van Dieten
Hugo Ahlenius wrote: I thought it would be natural to have a tag that just deletes the current rendered page from memory, and starts off again. Kind of like cfflush, which flushes the page to the client, but instead flushes it from memory. cfcontent reset=yes Jochem

RE: anti-cfflush

2003-02-24 Thread Hugo Ahlenius
Thanks, I knew it wouldn't be too hard! This way I can ensure that the XML declaration (for XHTML pages) gets on top, without having to worry about white-spaces before! ~| Archives:

Re: anti-cfflush

2003-02-24 Thread mark brinkworth
Dang, forgot about that way cfcontent reset=yes Jochem __ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com

Generate Error Log

2003-02-24 Thread Scott Wilhelm
Is there a log generated for errors within a site? If not, how can I go about creating one myself? Thanks, Scott Scott Wilhelm Computer Technician/Web Developer St. Lawrence-Lewis BOCES PO Box 231, Outer State Street Canton, NY 13617 P. 315-386-4504 x 164 F. 315-386-3395 W.

Re: Generate Error Log

2003-02-24 Thread Bruce Sorge
If you are referring to CFMX Logs, they are typically stored in C:\CFusionMX\logs. - Original Message - From: Scott Wilhelm [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, February 24, 2003 7:46 AM Subject: Generate Error Log Is there a log generated for errors within a

Re: Generate Error Log

2003-02-24 Thread Clint
ColdFusion has an error log file that you can view through CF Admin. Clint - Original Message - From: Scott Wilhelm [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, February 24, 2003 7:46 AM Subject: Generate Error Log Is there a log generated for errors within a site?

Automatic File Download

2003-02-24 Thread Mark Leder
Hi All, I have a script (listed below) that when run allows a file to be downloaded to a client machine. In IE 5+ it works great. However, in NS 6-7 the file extension .cfm wants to append itself to the end of the file (in this case a .pdf). Any way to stop this appending? === snip

Inserting into MySQL database

2003-02-24 Thread FlashGuy
Hi, I have nine variables that I want inserted into my database. cfquery name=qInsertData DATASOURCE=results Insert into myresults (strFileName, strCommand, strCreatedOn, strLastAcc, strLastMod, strSize, strDirectory, strDateCommand, strUsername) VALUES ('#Filename#', cfqueryparam

OT: possible to open new window on CF_MsMenu?

2003-02-24 Thread Janine Jakim
Is anyone using MsMenu? Is there a way to get the link to open a new window? I haven't had any luck doing it this way. I'm assuming that it can't be done since the tag is using js. Thanks, J ~| Archives:

RE: possible to open new window on CF_MsMenu?

2003-02-24 Thread Robertson-Ravo, Neil (RX)
Haven't used it, but I would assume there is a 'target' option and you simply tell it to open _blank -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED] Sent: 24 February 2003 14:31 To: CF-Talk Subject: OT: possible to open new window on CF_MsMenu? Is anyone using MsMenu?

Re: Inserting into MySQL database

2003-02-24 Thread Jochem van Dieten
FlashGuy wrote: cfquery name=qInsertData DATASOURCE=results Insert into myresults (strFileName, strCommand, strCreatedOn, strLastAcc, strLastMod, strSize, strDirectory, strDateCommand, strUsername) VALUES ('#Filename#', cfqueryparam value=#strFilename# cfsqltype=CF_SQL_LONGVARCHAR)

OT - JS Question

2003-02-24 Thread Tangorre, Michael
Hey everyone, sorry for the OT post, but I figure someone might have a solution to my problem. I need a way to alert the user that they have made changes to one or more form fields if they attempt to exit the page before saving. does anyone know of a quick solution to this? Thanks, Mke

RE: OT - JS Question

2003-02-24 Thread Scott Wilhelm
Maybe set a hidden field up in the form, and have an onChange refer to a function that will update that hidden field so that if it changes it would change it from change=no to change=yes. Then, put an onExit (or onUnload...can't remember which off the top of my head), to refer to another function

RE: OT - JS Question

2003-02-24 Thread David Collie (itndac)
script var bChangeFlag = False; function udfFlagChange() { bChangeFlag = True; } function udfCheckChange() { if (bChangeFlag == True) { alert('You changed somethings'); return false; } else { return true; } } /script

Re: anti-cfflush

2003-02-24 Thread Paul Hastings
cfset GetPageContext().getOut().clearBuffer() i suppose i should know this but what else is hungoff of getPageContext()? its kind of lacking in terms of docs. ~| Archives:

OT: js popup widow width

2003-02-24 Thread Ewok
hi, this is sorta OT i guess but I saw something the other day about dynamically resizing popup widows with window.resizeTo ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Server.log file

2003-02-24 Thread David Brown
We are getting time outs on our server. They are getting worse as time goes by. One user while using Windows 2k IE 5.00.3502 can not even load the page. But other users have no problem at all. Could this be a browser issue or the server. Below is a snip of our server log.

RE: anti-cfflush

2003-02-24 Thread Andre Mohamed
You probably want to refer to the JSP specs here: http://java.sun.com/products/jsp/download.html#specs to get the best understanding of full capabilities of the Page Context object. Thanks, André -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: 24 February 2003

RE: anti-cfflush

2003-02-24 Thread Andre Mohamed
More specifically, see here: http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/jsp/PageCont ext.html Thanks, André -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: 24 February 2003 15:26 To: CF-Talk Subject: Re: anti-cfflush cfset

OT: js popup window width ...trying this again

2003-02-24 Thread Ewok
cntrl enter gets me everytime, im used to typing in access columns : ) anyway, hers the finsihed message... i saw the other day how you could resize popup windows with window.resieTo I need to just resize the width so there is no scrolling im using the following fucntion to call my pop ups !--//

Request for Comment

2003-02-24 Thread LI, Chunshen .Don.
Greetings to all, First of all, I have to say, there are times that I may seem to be a bull in chinashop, so, for that I want to hit myself in the head a couple of times :) Here's an ad hoc query tool designed and developed in Cold Fusion for MS SQL Server (7,2000), Oracle(8x and 9x) and IBM DB2

Re: FREE BlueDragon Server Released!

2003-02-24 Thread Thomas Chiverton
On Saturday 22 Feb 2003 17:10 pm, Vince Bonfanti wrote: The only conflict to watch out for is when you go to install a web server adapter to IIS or Apache--in that case you can only have one of BlueDragon/CFMX/CF5 attached to the web server. But you can just use ProxyPass or mod_rewrite to

Re: RE: OT - JS Question

2003-02-24 Thread ksuh
The onUnload event doesn't bubble, which means that you can't abort the operation of the page using onUnload. IE has an event called onBeforeUnload that does what you need, but it always displays a confirmation box, and you can only add text to the box - there's fixed text on it that's always

Re: FBX3 AND CFMX

2003-02-24 Thread John Paul Ashenfelter
Granted, if a developer were to totally rework the core files, some issues might arise; however, just deviating from the methodology in some ways doesn't make it more difficult to follow. Besides, most developers don't fiddle around with the core files. This is the actual issue I *was*

Re: Old Version of CF $erver

2003-02-24 Thread John Paul Ashenfelter
Macromedia will still sell CF5 -- you can get it from their online store. Of course is $1299 (same as CFMX)... Regards, John Paul Ashenfelter CTO/Transitionpoint [EMAIL PROTECTED] - Original Message - From: Michael Pool [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday,

RE: FREE BlueDragon Server Released!

2003-02-24 Thread Dave Watts
The only conflict to watch out for is when you go to install a web server adapter to IIS or Apache--in that case you can only have one of BlueDragon/CFMX/CF5 attached to the web server. But you can just use ProxyPass or mod_rewrite to map the server on port 8500 into the URI space

Re: FBX3 AND CFMX

2003-02-24 Thread ksuh
Keep in mind that frameworks in any platform/language often get customized by end developers. Gawd knows how many bastardized versions of Struts are out there... Expect a shrink-wrapped framework to be customized. - Original Message - From: John Paul Ashenfelter [EMAIL PROTECTED] Date:

Re: FREE BlueDragon Server Released!

2003-02-24 Thread samcfug
| | You don't even have to do that. You can just enable BlueDragon or CFMX or | CF5 within specific virtual servers or directories, on Apache or IIS. | | Dave Watts, CTO, Fig Leaf Software | http://www.figleaf.com/ | voice: (202) 797-5496 | fax: (202) 797-5444 | I would be interested in

Re: unexpeted result with cfqueryparam

2003-02-24 Thread Dina Hess
cfset value = String cfquery .. INSERT INTO table (field) VALUES (cfqueryparam cfsqltype=cf_sql_varchar value=#value# /cfquery Make the value anything you want, quotes, backslashes etc., it will work. I did...and it doesn't. But I think I know why now. The inserted data has to be passed

RE: FREE BlueDragon Server Released!

2003-02-24 Thread Dave Watts
You don't even have to do that. You can just enable BlueDragon or CFMX or CF5 within specific virtual servers or directories, on Apache or IIS. I would be interested in seeing more details on this feature I've described this more than once on this list, I'm sure, so it's probably in

RE: hey bluedragoneers :)

2003-02-24 Thread Vince Bonfanti
Yes, this works. I've asked one of our engineers to forward full details to you to make sure you have BlueDragon set up properly. Vince Bonfanti New Atlanta Communications, LLC http://www.newatlanta.com -Original Message- From: samcfug [mailto:[EMAIL PROTECTED] Sent: Saturday,

Re: HTTPS

2003-02-24 Thread Cary Gordon
The encryption is performed on submission, so the form does not have to be an https. That said, while all of us so called experts might know this, the general public does not, and they will be looking for that lock symbol on the form page, so you might as well make it a mandatory ssl page

CFHTTP timeout

2003-02-24 Thread Nick de Voil
We're using CFHTTP (CFMX) to get PDF documents translated to HTML by Adobe's online service at http://access.adobe.com/perl/convertPDF.pl . CFHTTP appears to be finishing reading the output before it's finished coming back. I don't think it's timing out because we have the timeout set to 600,

Re: FREE BlueDragon Server Released!

2003-02-24 Thread Christian Cantrell
On Saturday, February 22, 2003, at 10:24 AM, Vince Bonfanti wrote: Note that the BlueDragon implementation is via the new PAGE attribute of the CFINCLUDE tag (and not via the GetPageContext function), which allows you to include the output of JSP pages or servlets in a CFML page:

URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Leonardo Crespo - Cftop.COM
I'm evaluating cfmx on j2ee. I use mysql as database and all my date are stored in mysql default format, witch is -mm-dd hh:mm:ss. I'm using the Portugues(Brazilian) locale. As you know, MYSQL stores DateTime objects in the format -MM-DD HH:MM:SS. When i try to run the code: cfquery

RE: URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Mike Townend
Drop the quotes... #LsDateFormat(DateVar, 'dd/mm/')# Instead of #LsDateFormat(DateVar, 'dd/mm/')# HTH Mikey = http://www.phonebin.com From Phone to Web in minutes -Original Message- From: Leonardo Crespo - Cftop.COM [mailto:[EMAIL

Re: URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Leonardo Crespo - Cftop.COM
opz, it's type error, the code does not have the quotes, sorry =) - Original Message - From: Mike Townend To: CF-Talk Sent: Monday, February 24, 2003 3:15 PM Subject: RE: URGENT, cfmx interprets MYSQL date (-mm-dd hh:mm:ss) as INVALID! Drop the quotes...

Re: URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Leonardo Crespo - Cftop.COM
Here is the real code: it reads a TXT file that has {ts '2003-01-07 16:23:09'} as content: cffile action=read file=#AbsolutePath#\AnimaisOnline\Chat\UltimaAtualizacao.txt variable=dtUltimaAtualizacao #LsDateFormat(dtUltimaAtualizacao, 'dd/mm/')# Then i got the error: {ts apos;2003-01-07

Re: CFHTTP timeout

2003-02-24 Thread Bud
On 2/24/03, Nick de Voil penned: We're using CFHTTP (CFMX) to get PDF documents translated to HTML by Adobe's online service at http://access.adobe.com/perl/convertPDF.pl . CFHTTP appears to be finishing reading the output before it's finished coming back. I don't think it's timing out because we

Re: URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Leonardo Crespo - Cftop.COM
I got it working by this code: cffile action=read file=#AbsolutePath#\AnimaisOnline\Chat\UltimaAtualizacao.txt variable=dtUltimaAtualizacao cfset dtUltimaAtualizacao = CreateODBCDateTime(#dtUltimaAtualizacao#) #LsDateFormat(dtUltimaAtualizacao, 'dd/mm/')# Note the cfset tag. Looks like

Re: FREE BlueDragon Server Released!

2003-02-24 Thread Sean A Corfield
On Saturday, Feb 22, 2003, at 07:24 US/Pacific, Vince Bonfanti wrote: My apologies--CFMX does indeed offer similar capabilities as BlueDragon in this regard. It was an oversight on my part, and not a deliberate attempt to mislead. No problem. I expected it was just an oversight. I've been

Re: URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Ewok
(suppose DateVar has the value 2003-02-23 18:34:59 ) it probably does.but your not calling the variable your trying to change the text value DateVar into a date #LsDateFormat(DateVar, 'dd/mm/')# try them without quotes #LsDateFormat(DateVar, 'dd/mm/')#

Re: URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Leonardo Crespo - Cftop.COM
The mega wierd part is that if i run the code: cffile action=read file=#AbsolutePath#\AnimaisOnline\Chat\UltimaAtualizacao.txt variable=dtUltimaAtualizacao cfif IsDate(#dtUltimaAtualizacao#) yes cfelse no /cfif #LsDateFormat(dtUltimaAtualizacao, 'dd/mm/')# It returns TRUE (yes) for the

SQL SP3 and CF5 Crashtacular!!!!!

2003-02-24 Thread Buddy
Hi everyone. I have been away from the group for a while. I hope all has been going well. I have a problem and I am hoping that y'all can help me sort it out. We had an application server and a sql server server running very nicely until the sql slammer virus hit a few weeks ago, during the chaos

Re: URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Ewok
that is weird is that actually how it is entered in the text file? ts apos;2003-01-07 16:23:09apos; including the [apos;]... and is this space at the end in there too? 2003-02-23 18:34:59 ) - Original Message - From: Leonardo Crespo - Cftop.COM [EMAIL PROTECTED] To: CF-Talk

Re: URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Leonardo Crespo - Cftop.COM
Yes, the content of the file is: {ts '2003-01-07 16:23:09'} without beginning and ending spaces, and no extra lines, lf or cr. I try to add a trim function to strip possible spaces, no sucess :'-( - Original Message - From: Ewok To: CF-Talk Sent: Monday, February 24, 2003

RE: FREE BlueDragon Server Released!

2003-02-24 Thread Vince Bonfanti
I'm giving two talks at MXNorth. The first, Intro to JSP for CFML Developers is a slightly updated version of the presentation I gave at BACFUG in December (I also gave this presentation to the Atlanta CFUG, and somewhere else I don't remember offhand). This one is on Friday at 2:15 pm. The

CF Administrator Settings

2003-02-24 Thread Scott Wilhelm
I'm looking through some of the settings, and I was wondering what a good CF5 server setup is. I see that there's single-threaded setting to reduce the need for CFLOCK (is that good?), etc. Hints, tips, tricks, etc. would be greatly appreciated! Scott Scott Wilhelm Computer Technician/Web

Re: URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Jochem van Dieten
Leonardo Crespo - Cftop.COM wrote: That's wierd and definitly not nice =/. Maybe i should post a bug @ MM page. I think you should. I have always found it weird that -mm-dd hh:mm:ss (which is one of the 2 formats from ISO-8601) is not an officially supported format, but that it behaves

RE: unexpeted result with cfqueryparam

2003-02-24 Thread Andrew Tyrone
-Original Message- From: Dina Hess [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 12:06 PM To: CF-Talk Subject: Re: unexpeted result with cfqueryparam I agree that Trim() should not influence a single quote. Nor should HTMLEditFormat(). But both do, even without

Allowing specific HTML tags to be displayed

2003-02-24 Thread Russ
All-- I've still not had any luck trying to get Replace or ReReplace to allow a set of specific codes when displaying information from a database. I'm hoping to allow for only specific sets: Italics, Bold, A HREF and IMG SRC and I'm baffled as to how to get this to work. It's a bit of a

Re: Allowing specific HTML tags to be displayed

2003-02-24 Thread Matthew Walker
Are you running CF5 or CFMX? - Original Message - From: Russ [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 8:16 AM Subject: Allowing specific HTML tags to be displayed All-- I've still not had any luck trying to get Replace or ReReplace to allow a

odbc error 01000 (General Warning)

2003-02-24 Thread Michael Ross
We have a box win2000 with cf 5 that points to a sql2000 box. We started noticing a lot of these errors that occured randomly ODBC Error Code = 01000 (General warning) [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionWrite We tried rebooting, we tried re starting the cf service

RE: Allowing specific HTML tags to be displayed

2003-02-24 Thread Russ
CFMX -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 1:20 PM To: CF-Talk Subject: Re: Allowing specific HTML tags to be displayed Are you running CF5 or CFMX? - Original Message - From: Russ [EMAIL PROTECTED] To:

Re: Allowing specific HTML tags to be displayed

2003-02-24 Thread Jerry Johnson
http://www.cflib.org/udf.cfm?ID=774 This should get you there. Jerry Johnson [EMAIL PROTECTED] 02/24/03 02:16PM All-- I've still not had any luck trying to get Replace or ReReplace to allow a set of specific codes when displaying information from a database. I'm hoping to allow for only

CF Code (Business Rules) in the Presentation Layer (OT?)

2003-02-24 Thread Reilly, James
We have a repeating patter where we'll need business rules applied in the presentation layer (mostly via JavaScript for a smart client and some post form validation on an action page, maybe a call to EBJ), as well as these same rules applied to flat files that are coming in. Both need the same

BlueDragon Config

2003-02-24 Thread [EMAIL PROTECTED]
I ahev installed Blue Dragon Server on my WinXP machine at the house with excellent results, but I have tried to run it at work on our Win2K server with IIS 5.0 and I have some issues... Maybe one of you know why... When I hit http://localhost with my machine I get the Blue Dragon Default page...

Re: URGENT, cfmx interprets MYSQL date (yyyy-mm-dd hh:mm:ss) as INVALID!

2003-02-24 Thread Leonardo Crespo - Cftop.COM
Yeah, you're right =/ - Original Message - From: Jochem van Dieten To: CF-Talk Sent: Monday, February 24, 2003 4:14 PM Subject: Re: URGENT, cfmx interprets MYSQL date (-mm-dd hh:mm:ss) as INVALID! Leonardo Crespo - Cftop.COM wrote: That's wierd and definitly

SQL: How do I a get list of everybody that doesn't meet a certain criteria

2003-02-24 Thread Kronenberger, Douglas
I'm stumped. I have a table that has multiple courses taken (CourseName) entries for each employee (EmpID) This gets me everybody that took the coures. SELECT EmpID, CourseName FROM Course WHERE CourseName = Preventing Sexual Harassment But how do I get everybody that

RE: How do I a get list of everybody that doesn't meet a certain criteria

2003-02-24 Thread Bryan F. Hogan
SELECT EmpID, CourseName FROM Course WHERE CourseName Preventing Sexual Harassment Bryan F. Hogan Director of Internet Development Macromedia Certified ColdFusion MX Developer Digital Bay Media, Inc. 1-877-72DIGITAL

RE: How do I a get list of everybody that doesn't meet a certain criteria

2003-02-24 Thread Tony Weeg
Select EmpID from course where empId not in ( SELECT EmpID, CourseName FROM Course WHERE CourseName = Preventing Sexual Harassment ) hth ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile

RE: How do I a get list of everybody that doesn't meet a certain criteria

2003-02-24 Thread Mosh Teitelbaum
Something like: SELECT EmpID FROM Course WHERE EmpID NOT IN ( SELECT EmpID, CourseName FROM Course WHERE CourseName = Preventing Sexual Harassment ) -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax:

What is the JDBC type of MYSQL driver included in CFMX to j2ee?

2003-02-24 Thread Leonardo Crespo - Cftop.COM
That's a quick question, What is the JDBC type of MYSQL driver included in CFMX to j2ee? I'm asking that because i'm wondering if i should use the MYSQL Connector/J witch is a TYPE 4 JDBC driver instead if the one included with CFMX to J2EE. MYSQL says that it is 50-100% faster than previous

Re: SQL: How do I a get list of everybody that doesn't meet a certain criteria

2003-02-24 Thread Jacob
WHERE CourseName not like '%Preventing Sexual Harassment%' At 01:57 PM 2/24/2003 -0600, you wrote: I'm stumped. I have a table that has multiple courses taken (CourseName) entries for each employee (EmpID) This gets me everybody that took the coures. SELECT EmpID, CourseName

RE: How do I a get list of everybody that doesn't meet a certain criteria

2003-02-24 Thread Russ
That sounds like you're getting everyone who signed up for the course. If you wanted to get everyone who didn't take the course, you might want to add another field for 'CourseTaken' or something, but that's just me. Have you tried simply replace the = with ? Russ -Original Message-

Re: How do I a get list of everybody that doesn't meet a certain criteria

2003-02-24 Thread Leonardo Crespo - Cftop.COM
If you have NULL or values for CourseName in your DB for your Employees that hasnt build the course you can use that in your where clause (where CourseName IS NULL OR CourseName = . But i think you have a Employees table, with all the Employees. You can make a query to select all employees

Re: How do I a get list of everybody that doesn't meet a certain criteria

2003-02-24 Thread Clint
Try this: SELECT EmpID, CourseName FROM Course WHERE CourseName != Preventing Sexual Harassment - Original Message - From: Kronenberger, Douglas [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, February 24, 2003 1:57 PM Subject: SQL: How do I a get list of everybody that

RE: How do I a get list of everybody that doesn't meet a certain criteria

2003-02-24 Thread Mosh Teitelbaum
Just mind the , CourseName in the inner query. -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 2:53 PM To: CF-Talk

RE: What is the JDBC type of MYSQL driver included in CFMX to j2ee?

2003-02-24 Thread Barney Boisvert
I believe that CFMX includes a type 4 driver for MySQL, but I'm not 100% sure. It would surprise me if they didn't, with CF supposedly positioned for large-scale applications. That being said, it might not be the _best_ MySQL driver available, although I've not had any problems with it

Re: SQL: How do I a get list of everybody that doesn't meet a certain criteria

2003-02-24 Thread Jochem van Dieten
Kronenberger, Douglas wrote: I have a table that has multiple courses taken (CourseName) entries for each employee (EmpID) This gets me everybody that took the coures. SELECT EmpID, CourseName FROM Course WHERE CourseName = Preventing Sexual Harassment But how do I

RE: SQL: How do I a get list of everybody that doesn't meet a cer tain criteria

2003-02-24 Thread Everett, Al
Shouldn't those be single quotes around the course name? -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 3:02 PM To: CF-Talk Subject: Re: SQL: How do I a get list of everybody that doesn't meet a certain criteria

context-sensetive help

2003-02-24 Thread Robert Bailey
I remember a few years ago using finding and using a great little plug in for larger applications that allowed for context-sensitive help. It had a windows type interface to it, looked almost exactly like windows help. I can not remember where we purchased this, and it has been a few years. Anyone

Re: SQL: How do I a get list of everybody that doesn't meet a cer tain criteria

2003-02-24 Thread Leonardo Crespo - Cftop.COM
Makes no diference for me , using mysql and cfmx on win2k. - Original Message - From: Everett, Al To: CF-Talk Sent: Monday, February 24, 2003 5:12 PM Subject: RE: SQL: How do I a get list of everybody that doesn't meet a cer tain criteria Shouldn't those be single quotes

RE: context-sensetive help

2003-02-24 Thread Bryan F. Hogan
cf_activehelp from Activefeedback.com? Bryan F. Hogan Director of Internet Development Macromedia Certified ColdFusion MX Developer Digital Bay Media, Inc. 1-877-72DIGITAL -Original Message- From:

RE: odbc error 01000 (General Warning)

2003-02-24 Thread Ben Koshy
I typically see this when Box A is having trouble or intermittent TCP/IP trouble communicating with Box B. Check for: A) Bad Cables B) Router/Switch misconfiguration C) Mismatched Duplexes on the Network Cards (to the Switch) D) Make sure one of the boxes isn't rebooting randomly often Some

political leanings test

2003-02-24 Thread Michael Dinowitz
http://www.politicalcompass.org/ One of those political spectrum detection tests. Good for a nice heated debate on the list. :) My ratings: Economic Left/Right: -3.25 Authoritarian/Libertarian: -2.56 ~| Archives:

Re: political leanings test

2003-02-24 Thread Michael Dinowitz
Please disregard. This was supposed to go to CF-Community. Please do not reply to this on this list. Thank you. http://www.politicalcompass.org/ One of those political spectrum detection tests. Good for a nice heated debate on the list. :) My ratings: Economic Left/Right: -3.25

Creating Functions

2003-02-24 Thread Scott Wilhelm
How would I create a function that would let me to create, let's say, a date drop down... I'd want to create something where I could specify it something like this: CF_Date name=CustomDate currentValue=day(now()) type=day In my head,this would generate a select drop down (1-31) with today (24)

Re: Allowing specific HTML tags to be displayed

2003-02-24 Thread S . Isaac Dealey
Hey Russ -- I already know what Matt's going to recommend ant that's using cfimport with an empty prefix value which will allow you to specify a directory of CF modules to replace the html tags. It's not a bad solution, however, the problem you're going to have is that you need 1 tag for each html

RE: political leanings test

2003-02-24 Thread Dave Watts
Good for a nice heated debate on the list. :) This list? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~| Archives:

RE: context-sensetive help

2003-02-24 Thread Robert Bailey
Not what I was thinking, but going to check this one out, thanks! Thanks! Robert Bailey Famous for nothing -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 3:26 PM To: CF-Talk Subject: RE: context-sensetive help cf_activehelp from

RE: Creating Functions

2003-02-24 Thread Raymond Camden
It sounds like you want to build a custom tag. For something as broad as this - the best bet is to read the documentation in the /cfdocs folder. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Member of Team

RE: Creating Functions

2003-02-24 Thread Barney Boisvert
From within your custom tag, you can output HTML just like normal. The code would look something like this, minus validation and such: ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: political leanings test

2003-02-24 Thread John Stanley
mine Economic Left/Right: -3.75 Authoritarian/Libertarian: -1.54 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 3:31 PM To: CF-Talk Subject: political leanings test http://www.politicalcompass.org/ One of those political spectrum

RE: Creating Functions

2003-02-24 Thread Barney Boisvert
Whoa, what happened there? There some sort of filter that'll kill anything below a long line of dashes on the list server? Here's the code again, minus the dashes: cfif thistag.executionmode EQ start cfif compareNoCase(attributes.type, day) EQ 0 select name=#attributes.name# cfloop

RE: political leanings test

2003-02-24 Thread Scott Wilhelm
My ratings: Economic Left/Right: -4.38 Authoritarian/Libertarian: -1.69 -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 3:31 PM To: CF-Talk Subject: political leanings test http://www.politicalcompass.org/ One of those

RE: political leanings test

2003-02-24 Thread John Stanley
sorry, i saw the repost by Michael after I sent this -Original Message- From: John Stanley Sent: Monday, February 24, 2003 3:47 PM To: CF-Talk Subject: RE: political leanings test mine Economic Left/Right: -3.75 Authoritarian/Libertarian: -1.54 -Original Message- From: [EMAIL

Re: political leanings test

2003-02-24 Thread Michael Dinowitz
Not this list. I meant to send this to CF-Community. Please respond to this thread there. Sorry for the very OT post. Good for a nice heated debate on the list. :) This list? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

RE: Allowing specific HTML tags to be displayed

2003-02-24 Thread Russ
I'm looking in to this and realize that I've mis-described what I'm trying to do. I don't want the tags to be displayed, instead, I want them to be actually WORK. So, if someone does a href=http://www.blinktag.orgblinktag.org/a then it shows up in the output the link blinktag.org that will work.

Re: CFHTTP timeout

2003-02-24 Thread Nick de Voil
Thanks Bud. Any advance on that, anyone? CFHTTP has a problem with pages that are delivered in steps, such as a page that come back with Please wait while your request is processed. It will get that first message and think the page is done. Not sure what you can do about it if anything.

RE: Allowing specific HTML tags to be displayed

2003-02-24 Thread Matthew Walker
Was not! OK, maybe. Actually what I was going to suggest was replacing the on the html tags you want with a control character like chr(27) then stripping all the tags, then swapping the escaped tags back in. This was pre-first cup of morning coffee however. Isaac's udf looks nice.

RE: Allowing specific HTML tags to be displayed

2003-02-24 Thread Jerry Johnson
Is it a fairly low volume site? I have often written the code out to a temp file, and then used cfinclude to pull it in. This is mainly used for cf code stored in a db that I want to have executed. But I still don't quite get what you are trying to do. It sounds like you have HTML code in a db

Re: SQL: How do I a get list of everybody that doesn't meet a cer tain criteria

2003-02-24 Thread Jochem van Dieten
Everett, Al wrote: From: Jochem van Dieten [mailto:[EMAIL PROTECTED] SELECT EmpID FROM Employees WHERE NOT EXISTS ( SELECT 1 FROM Course WHERE CourseName = Preventing Sexual Harassment AND

  1   2   >