RE: Retrieve index name in ORacle

2005-04-13 Thread Yexley Robert D Contr AFRL/PROE
SELECT index_name FROM all_indexes WHERE table_name = ... // YEX // -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 5:31 PM To: CF-Talk Subject: OT: Retrieve index name in ORacle I need to find the name of an in

RE: Deploying CFMX7 Dev war file to J2EE server, allows CFMX ente rprise features?

2005-03-24 Thread Yexley Robert D Contr AFRL/PROE
I've heard similar reports as well. I'm not familiar with all of the details of it, but I'm told it does in fact work. I also understand that it's not supported by MACR on anything other than JRun, which is understandable of course, but I don't know that for sure. This is mostly hearsay from the

RE: .NET mailing list like HOF

2005-03-24 Thread Yexley Robert D Contr AFRL/PROE
For .NET you'll most likely find that forums are more active than mailing lists. The ones at http://asp.net/forums/ is VERY active, and I'd imagine you could most likely find any assistance you might need there. If you're referring to something other than ASP.NET, then the new Microsoft forums m

Run CFC method on form submit

2005-02-28 Thread Yexley Robert D Contr AFRL/PROE
I'm looking for some good documentation or a code sample for how I would execute a method in a CFC on form submit. So far I haven't been able to find what I'm looking for. What I'm trying to do seems like it ought to be fairly straight forward. I've got a method in a CFC that inserts a record in

RE: CFGrid Styles

2005-02-10 Thread Yexley Robert D Contr AFRL/PROE
The tag that accompanies the tag has lots of attributes like font, fontSize, italic, bold, textColor, bgcolor, headerFont, headerFontSize, headerBold, headerAlign, headerTextColor, etc. The tag itself has a number of attributes itself for formatting, such as rowHeaders, rowHeaderAlign, rowHe

Some basic CFC stuff

2005-02-09 Thread Yexley Robert D Contr AFRL/PROE
I've been working with CFMX for a couple of years now (since about the time CFMX was released), but have only very recently started looking into the world of CFCs. So I'm trying to write what I would think is a fairly basic CFC, but am having trouble figuring out how to do a couple of things, an

RE: Connecting CFMX to MSDE SQL Server

2005-01-11 Thread Yexley Robert D Contr AFRL/PROE
I'm pretty sure that MSDE defaults to installing using Windows authentication only. You'll probably need to change the security mode (securitymode=0) so that it supports mixed-mode authentication, which will allow SQL authentication, rather than windows authentication before connection using the

RE: Oracle PL/SQL connection through ColdFusion

2004-10-06 Thread Yexley Robert D Contr AFRL/PROE
alk Subject: RE: Oracle PL/SQL connection through ColdFusion CFMX does indeed support it as I've used it myself (as a quick test of some code). Of course I then created the procedure in an Oracle package, but it still worked in a standard cfquery. -Original Message- From: Yexley Robe

RE: Oracle PL/SQL connection through ColdFusion

2004-10-06 Thread Yexley Robert D Contr AFRL/PROE
I'm not sure what you're attempting to do is possible then. I'm fairly certain that the tag only supports native SQL statements only (SELECT, INSERT, UPDATE, DELETE). I don't believe it supports proprietary procedural code such as PL/SQL or Transact-SQL. I don't think even CFMX supports that. Mayb

RE: Oracle PL/SQL connection through ColdFusion

2004-10-05 Thread Yexley Robert D Contr AFRL/PROE
That's not PL/SQL though. That's simply an oracle object create statement, which only requires that you have the CREATE privilege selected in your DSN within the CF Administrator for the connection, which, as you stated, is based on the driver you're using. But it's not PL/SQL. /

RE: Oracle PL/SQL connection through ColdFusion

2004-10-05 Thread Yexley Robert D Contr AFRL/PROE
Put the PL/SQL in the database in the form of a function, procedure or package, and then use to run it. // YEX //   _   From: Wach, Samson [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 1:35 PM To: CF-Talk Subject: Oracle PL/SQL connection through ColdFusion

RE: OT- Hosting Recommendation

2004-09-20 Thread Yexley Robert D Contr AFRL/PROE
I don't have any experience with their ColdFusion hosting, as I use their ASP.NET servers, but aside from that, I've got nothing but good things to say about CrystalTech. I've been with them for well over six months now and haven't had a single problem with them at all. I'd comment on their custome

RE: Form Filling w/ activePDF Toolkit

2004-09-14 Thread Yexley Robert D Contr AFRL/PROE
Well, Internet Explorer just refuses to cooperate (it seems to work OK for me in Firefox), and I was unable to make any changes that would work, so this should do the trick for you guys. Sorry about the errors. http://yexley.net/bob/code/cdrlreport.zip // YEX // -Ori

RE: Form Filling w/ activePDF Toolkit

2004-09-13 Thread Yexley Robert D Contr AFRL/PROE
F Toolkit Robert, I am in the midst of doing this same thing for EPA.  Could you also send me the sample code using Coldfusion? Thanks much, Chris - Original Message - From: Yexley Robert D Contr AFRL/PROE <[EMAIL PROTECTED]> Date: Thu, 9 Sep 2004 15:09:52 -0400 Subject: RE: Form F

RE: Form Filling w/ activePDF Toolkit

2004-09-09 Thread Yexley Robert D Contr AFRL/PROE
I have some samples of some code that I've used successfully with it. I don't think I can include attachments to messages to the list, so I'll send it to you directly. <.YEX.> -Original Message- From: Tim Do [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 2:53 PM To: CF-T

RE: Seaching for the coolest dhtml meu

2004-07-30 Thread Yexley Robert D Contr AFRL/PROE
I highly recommend Transmenu by Aaron Boodman (http://youngpup.net/2004/transmenus ). <.YEX.> -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 4:04 PM To: CF-Talk Subject: Seaching for the coolest dhtml meu I am trying to find a cool dhtml navigatio

Distributed Mode and writing/accessing files

2004-07-26 Thread Yexley Robert D Contr AFRL/PROE
I've got an application that I've been developing on a standalone server for a while, and now that I've moved the application into our staging environment I've run into a problem. Our staging environment is running in distributed mode. I have a few templates that generate PDF documents for printabl

RE: oracle unique id or identity

2004-05-20 Thread Yexley Robert D Contr AFRL/PROE
I don't know what version of Oracle you're using, but all of the documentation is available online at OTN. Here's the link for all of the Oracle9i documentation: http://otn.oracle.com/documentation/oracle9i.html . If you have need for other versions, there are also links on that same page for othe

RE: oracle unique id or identity

2004-05-19 Thread Yexley Robert D Contr AFRL/PROE
Without actually being able to test it, that appears to me that it should work just fine. Dual is...hard to describe...so I'll leave it to the Oracle documentation to explain what it is, heh (see definition below). You may also want to consider making sure that you define the ID column as the prima

RE: oracle unique id or identity

2004-05-19 Thread Yexley Robert D Contr AFRL/PROE
Oracle doesn't have any kind of unique-id or identity datatype for table columns. Instead, you need to use a "SEQUENCE" which is a standalone object inside an Oracle schema which generates unique numbers based on how you define the sequence when it's created. So, to use that in a table, you need to

RE: cfmx and activePDF Spooler

2004-01-29 Thread Yexley Robert D Contr AFRL/PROE
I don't know about this particular product, but I'm using the ActivePDF Toolkit in my CFMX application, and it works fine.  Occasionally I get an error instantiating the COM object, but it was very flaky and intermittent, so I just wrote an exception handler to juts re-run the page to try to execut

RE: Problems logging a user in properly

2004-01-28 Thread Yexley Robert D Contr AFRL/PROE
gging a user in properly Make sure you've started session management has been turned on for the application. Do this by setting "sessionmanagement" and "sessiontimeout" vars in your tag: sessiontimeout="#createtimespan(0,1,0,0)#"> -----Original Message-

Problems logging a user in properly

2004-01-28 Thread Yexley Robert D Contr AFRL/PROE
According to everything I've read in the documentation, on the ColdFusion Support forums, and elsewhere on the web, what I'm trying to do *should* work fine, but it's not. Any help/ideas would be greatly appreciated. I'm attempting to validate the user that's trying to access my application by eva