RE: Las record

2002-09-18 Thread Joe Eugene
You also have the option.. of @@IDENTITY.. if you are SQL Server... and it autmatically incremented...can remember what it is on Oracle. Cfquery... insert into... whatever select @@IDENTITY as MAXID from tableName Joe -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]]

RE: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Joe Eugene
Issac, I hope you understand that CURSORS are not the FASTEST thing in SQL Server.. i have personally written many cursors apps to do BATCH Processing.. but i wouldnt recommend SQL Server Cursors for a REAL TIME processing.. Well in Oracle its a different Story... Depends on the DB. I agree T-SQL

RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-18 Thread Joe Eugene
Yea!!! thanks a lot Ben . We are looking forward to any improvements...and will defnitely brag on it.. when its out... Oh, I agree. CF should keep getting better (and I believe it has been doing just that). So, yep, suggestions on how to improve CF are useful, and we'll keep doing just

RE: Returning columns with null values when specific columns are unknown at runtime

2002-09-18 Thread Joe Eugene
But then, to know for sure, we'd have to load test both. :) Am getting Brain Farted with all the testing am doing... Nah..NOT Another One :) Joe -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 11:41 PM To: CF-Talk Subject:

RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-18 Thread Joe Eugene
I hope MM DOESNT need a better reasoning to impove CFMX than the below. Gosh, we are trying to help improve CFMX..! Well said Dick.. I've been on board since 3.0 and I totally agree -- the books are getting so big (and the ***type so small) I can hardly lift or read them! The same is

Re: Getting List of Tablenames for a DSN

2002-09-19 Thread Joe Eugene
Or easy way STRAIGHT JSP... again Jsp Vs Cfm topic... i guess MM would suggest the below and learn Java.. rather than incorporating these capabilities into CFMX. JSP is some like.. Class.forName(macromedia.jdbc.MacromediaDriver); Connection con=

Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-19 Thread Joe Eugene
The whole .NET/aspx platform has changed.. Classic ASP is HISTORY(P-Code). NO COM+/COM.. write classes and web services with .NET. The same class can be used with multiple Languages. To my understanding C#.NET performs better than any other code(JSP/CFM/PHP/VB). Most of .NET stuff is NOT backward

Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-19 Thread Joe Eugene
I dont think ... Java's Bytecode is the same as C# MSIL.. They dont perform the same... I think C#'s MSIL or compiled code is closer to machine code and it performs better than bytecode.. Here are some docs.. http://www.c-sharpcorner.com/Tutorials/CSTutorial1AN.asp#Getting%20Started%2

Re: OT : SQL Server Bulk Copy

2002-09-19 Thread Joe Eugene
You can use SQL Server DTS to write the file and you can also execute the DTS using xp_cmdshell extended stored procedure. Joe From: S. Isaac Dealey [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: OT : SQL Server Bulk Copy Date: Thu, 19 Sep 2002 14:59:58

Re: OT: Best JAVA Book...

2002-09-19 Thread Joe Eugene
The Complete Reference Java 2 by Herbert Schildt Patrick Naughton.. These guys we on on original Java development team and the book is a good foundation... http://www.amazon.com/exec/obidos/tg/detail/-/0072224207/qid=1032481635/sr=1 -1/ref=sr_1_1/104-1985810-9341535?v=glances=books If you are

RE: OT: Best JAVA Book...

2002-09-19 Thread Joe Eugene
... On Thursday, September 19, 2002, at 05:31 , Joe Eugene wrote: The Complete Reference Java 2 by Herbert Schildt Patrick Naughton.. Check out the reviews of his books online at: http://www.accu.org/bookreviews/public/reviews/0au/s.htm Scroll down to find his books (that section is 'S' alphabetically

RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-19 Thread Joe Eugene
CFMX Servers? []'s! Alex | alex hübner | [EMAIL PROTECTED] | www.cfgigolo.com -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: quinta-feira, 19 de setembro de 2002 18:45 To: CF-Talk Subject: Re: Jsp Vs Cfm (CFMX) -- Test Code I dont think

RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-19 Thread Joe Eugene
I've seen this kind of thing countless times when doing load testing. I'm not able to share load testing results for clients, due to NDAs out the wazoo. NDAs? dont you have a any personal code you have tested? We are not asking for your Work Code... Joe -Original Message- From:

RE: OT: Best JAVA Book...

2002-09-19 Thread Joe Eugene
I browsed through it.. Good Book.. it looks like it covers a lot of topics in Java.. Joe -Original Message- From: Dan Haley [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 8:59 PM To: CF-Talk Subject: RE: OT: Best JAVA Book... I've really liked reading the first

Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-20 Thread Joe Eugene
-Talk [EMAIL PROTECTED] Sent: Friday, September 20, 2002 10:30 AM Subject: RE: Jsp Vs Cfm (CFMX) -- Test Code Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901 -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent

Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-20 Thread Joe Eugene
If you saying Java's Bytecode is the SAME as C#'s MSIL code, C# MSIL code is Platform Independent? Joe - Original Message - From: Matt Liotta [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, September 20, 2002 10:30 AM Subject: RE: Jsp Vs Cfm (CFMX) -- Test Code To

Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-20 Thread Joe Eugene
First google hit for Java's Bytecode is the same as C# MSIL: C#, as part of the .NET framework, is compiled to Microsoft Intermediate Language (MSIL), which is a language similar to Java's bytecode. That's *similar*, not *the same*. True, *similar*(concept) emphasized, then the CLR plays a

Re: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-20 Thread Joe Eugene
Message - From: Sean A Corfield [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, September 20, 2002 3:53 PM Subject: Re: Jsp Vs Cfm (CFMX) -- Test Code On Friday, September 20, 2002, at 10:46 , Joe Eugene wrote: True, *similar*(concept) emphasized, then the CLR plays a big role

RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-20 Thread Joe Eugene
without perfect given conditions/variables. It would be really great to have an independent/unbiased testing group that validates all this theory software corps come up with. Joe On Friday, September 20, 2002, at 01:40 , Joe Eugene wrote: this means less overhead and code will execute even faster

RE: Need Help interfacing CFMX to Oracle running on Mac OS X

2002-09-20 Thread Joe Eugene
Dick. You should be able to connect from CFMX with the Oracle JDBC Driver. I cant remember correctly.. but i think the port Oracle defaults to is 1348 or some like that. I have only used a mac 2 times in my whole life.. i dont know anything about macs. Joe -Original Message- From:

RE: Jsp Vs Cfm (CFMX) -- Test Code

2002-09-22 Thread Joe Eugene
But that still does not mean making blatantly incorrect statements and assumptions is the way to go. This has been a good *Discussion* topic. I am not sure how you translated Discussion/Talk into Statements. Anyways here is a good doc on the JIT and Java compilation.

Re: Resource for upgrading errors on going from coldfusion 5 to CFMx

2002-09-23 Thread Joe Eugene
huh.. i havent seen this so far... Upgrade/clean install of cmfx? btw its advisable to do #form[prospects_id]# Joe - Original Message - From: Declan Maher [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, September 23, 2002 9:00 AM Subject: RE: Resource for upgrading errors

Re: cookie limit

2002-09-23 Thread Joe Eugene
20 Cookies per domain Or 4Kb of Data. if you dont have too much data... u can get by the 20 limit no by writing out list values.. eg value=wPhone:270-2342,hPhone:271-2342 Joe Certified Advanced ColdFusion Developer - Original Message - From: Tony Weeg [EMAIL PROTECTED] To: CF-Talk

JVM setting?

2002-09-25 Thread Joe Eugene
they are different versions? Joe Eugene Certified Advanced ColdFusion Developer __ 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/cf

Re: JVM setting?

2002-09-25 Thread Joe Eugene
but specify -server option, that optimizes for server, rather than GUI stuff (-client). _ Pete Freitag CTO, CFDEV.COM http://www.cfdev.com/ -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 25, 2002

Re: JVM setting?

2002-09-25 Thread Joe Eugene
://www.cfdev.com/ -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 25, 2002 1:31 PM To: CF-Talk Subject: Re: JVM setting? Thanks Dave Pete but i am still confused though. Is this the right JRE Download http://java.sun.com/products/jdk/1.1

RE: JVM setting?

2002-09-25 Thread Joe Eugene
Is there any reason why CFOBJECT Java Class file call would Very SLOW in CF4.5 and CF5.0 compared to CFMX... Maybe this some setting issue.. anybody got any ideas? am running J2SE SDK 1.4.1 in both machines. Joe -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]] Sent:

RE: JVM setting?

2002-09-26 Thread Joe Eugene
Is there any reason why CFOBJECT Java Class file call would Very SLOW in CF4.5 and CF5.0 compared to CFMX... Maybe this some setting issue.. anybody got any ideas? am running J2SE SDK 1.4.1 in both machines. Joe -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]]

Re: JVM setting?

2002-09-26 Thread Joe Eugene
operation on a Java object. What do you suggest? Joe - Original Message - From: Sean A Corfield [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 12:23 AM Subject: Re: JVM setting? On Wednesday, January 2, 2002, at 07:26 , Joe Eugene wrote

Re: Ben's J2EE Book

2002-09-27 Thread Joe Eugene
I havent had to chance to look over Ben's J2EE book, does explain the CFMX Architecture and optimization stuff you can do? I browsed through this book that dealt with some the J2EE stuff http://www.amazon.com/exec/obidos/tg/detail/-/0735713049/qid=1033155687/sr=1

Re: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Joe Eugene
I am seeing a lot of *FLASH* talk on here.. its kinda disturbing... was wondering if Michael can move all the FLASH talk to another discussion Group (CF-TALK-FLASH) or something like that. Joe - Original Message - From: Robertson-Ravo, Neil (REC) [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: Date Comparison

2002-10-02 Thread Joe Eugene
You can do this in the query itself select ... from MyTable where Year(dateField)=Year(GetDate())-1 or select ... from MyTable where DatePart(,dateField)=DateAdd(,-1, GetDate()) Joe - Original Message - From: Chris [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: Update Problem in CF

2002-10-06 Thread Joe Eugene
Update Table1 set Table1FieldName=(select Table2FieldName from Table2 where Table2ModelNo=123) where Table1ModelNo=123 This is the general idea... Joe Certified Advanced ColdFusion Developer [EMAIL PROTECTED] -Original Message- From: Srimanta [mailto:[EMAIL PROTECTED]] Sent: Sunday,

Re: Randomizing Query Results

2002-10-07 Thread Joe Eugene
Your query results range between 1 and Total Record Count right? So you could do something like cfset r=randRange(1,QueryName.recordCount) cfoutput #QueryName.columnName[r]# /cfouput The above is what i guessed from your question. Joe Eugene Certified Advanced ColdFusion Developer

RE: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Joe Eugene
Well said.. Whats the haste to go into production with CFMX without testing your applications and be comfortable with it. Joe -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 9:48 AM To: CF-Talk Subject: RE: LONG time CF Supporter

RE: Can we help? (was RE: LONG time CF Supporter - About ready to dump CF!)

2002-10-08 Thread Joe Eugene
I personally think.. alot of the problems are due to making CFMX very backward compatible with older versions of CF. Why did MM claim CFMX backward compatible? Why not .NET Strategy? Again i think its the responsibility of developers to test their code on a totally different product(CFMX)..Load

RE: Flash Remoting (was: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Joe Eugene
Vernon, Doesnt it sound logical to clean up bugs in CFMX before thinking of new features? Priorities...? CFMX Or Flash... dont think many ppl here are interested in Flash... Joe -Original Message- From: Vernon Viehe [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002

RE: MM priorities? LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Joe Eugene
Vernon, It would be much appreciated if MM starts making some priorities to fix bugs in CFMX and clean up the Application server..rather than thinking of new features...Atleast try keep your current customers. Joe So that product management knows the scope/numbers of folks

RE: Flash Remoting (was: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Joe Eugene
CF Supporter - About ready to dump CF! OK Joe please let's not start another one of these threads...and I think you'd find many CF'ers interested in CFMX/Flash development. Nite Stace -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09

RE: MM Priorties? (was: LONG time CF Supporter - About ready to dump CF!

2002-10-08 Thread Joe Eugene
thought it would be good to reply here. Additionally, it looked like a great opportunity to emphasize why it's important to use the feature request and bug report form, even though Macromedia personnel watch this list. -Vern -Original Message- From: Joe Eugene [mailto:[EMAIL

Re: The Myth of Bugs (Was Huge Ungainly thread of Doom)

2002-10-09 Thread Joe Eugene
Great Post.. we are all supporters of CMFX and MM.. we are only want our voices to heard by MM and communicate responsible actions taken... Joe - Original Message - From: Dave Wilson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 09, 2002 9:13 AM Subject: RE:

Re: installing a new JVM (was: CFMX ...)

2002-10-14 Thread Joe Eugene
Can someone please clarify.. upgrading the JVM can result in better performance...(optimized native code etc) but how do you get better performace from an existing JDBC Type IV driver? To my understanding, any version of JVM does not improve on the performace of existing JDBC Type IV drivers...

Re: Reality Coldfusion: J2ee Integration with CDROM

2002-10-14 Thread Joe Eugene
Amazon says it ships in 24 hours..whats the deal..havent seen this book in stores either. Am looking forward to see some J2EE component intergration in this book... Does anybody have this book? Any comments.. Joe - Original Message - From: Stacy Young [EMAIL PROTECTED] To: CF-Talk

Re: How is CFMX J2EE implemented?

2002-10-14 Thread Joe Eugene
Great.. Learn somthing new everyday.. Now... Has anybody deployed any CF applications on Blue Dragon.. How are they working? Any issues? Joe - Original Message - From: Chris Norloff [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, October 13, 2002 5:43 PM Subject: RE: How

RE: CFML standardization (was RE: BlueDragon (was RE: How is CFMX J2EE implemented?))

2002-10-14 Thread Joe Eugene
BTW, Vince, I'd like typing of variables and Nulls in CFML :) Good Point! I think variable types and some OOP constructs should be available in CFML as an Option...just like cflocks.. if you dont want it.. dont use it. Sean... there are alot of instances.. where we need strongly typed

RE: CFML standardization (was RE: BlueDragon (was RE: How is CFMX J2EE implemented?))

2002-10-14 Thread Joe Eugene
Ben, CFScript.. looks and adopts some good features of Java/C++.. why not allow CFScript.. to have a strong language type? atleast as an optional coding style...for those who want it Joe -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: Monday, October 14,

RE: CFML standardization (was RE: BlueDragon (was RE: How is CFMX J2EE implemented?))

2002-10-14 Thread Joe Eugene
standardization (was RE: BlueDragon (was RE: How is CFMX J2EE implemented?)) On Monday, Oct 14, 2002, at 19:00 US/Pacific, Joe Eugene wrote: Sean... there are alot of instances.. where we need strongly typed language or code... we have proven this before... In fact, other languages manage just

RE: BlueDragon (was RE: How is CFMX J2EE implemented?)

2002-10-14 Thread Joe Eugene
I am all for healthy competition, but I'm wondering if introducing new tags into a different flavor of ColdFusion is a good idea. I dont think Tags like CF..This .. CF...That...would be of any use... If the above needs to implemented.. it should be upto the developer.. I think CF needs a

TEST

2002-10-16 Thread Joe Eugene
TEST: Please ignore ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

RE: Java Certification

2002-10-18 Thread Joe Eugene
1.2 Exam. http://suned.sun.com/US/certification/java/java_exam_objectives.html#pro grammer1.4 Can someone confirm this? Joe Eugene Certified Advanced ColdFusion Developer ~| Archives: http://www.houseoffusion.com

CFMX Session Issues?

2002-10-18 Thread Joe Eugene
Are there any known Issues with CFMX Sessions? I can't force expire CFMX sessions. I am using Client Session State Management. These docs dont help much.. http://livedocs.macromedia.com/cfmxdocs/Developing_ColdFusion_MX_Applications_with_CFML/sharedVars5.jsp#1154679 How do you force expire J2ee

RE: CFMX Session Issues?

2002-10-18 Thread Joe Eugene
Thanks Dave, This is what i understand.. If J2ee sessions are enabled.. it shouldnt populate CFID and CFTOKENS... but then again.. if you have Client State enabled.. you will see the CFIDCFTOKENS populated. In CF5.0 i was doing cfcookie Name=cfid expires=NOW cfcookie Name=cftoken expires=NOW and

Re: formatting #MonthasString

2002-10-18 Thread Joe Eugene
You can use #DateFormat(YourDate,mmm)# Or #MonthAsString(month(YourDate))# month(YourDate) gives you the month. Joe On Fri, 18 Oct 2002 12:30:15 -0400 Tim Laureska [EMAIL PROTECTED] wrote: Is there a way to format a number value retrieved for a month (ex 10 for the month of October) with

RE: session vars and locking

2002-10-19 Thread Joe Eugene
You are correct... but i think its better to copy the variables to local scope in one sequence... instead of a lot cflocks.. cflock scope=Session type=READONLY timeout=10 cfscript tmpVar1=Session.SomeStruct.var1; tmpVar2=Session.SomeStruct.var2; /cfscript /cflock cflock scope=Session

RE: session vars and locking

2002-10-19 Thread Joe Eugene
-Original Message- From: Joe Eugene [mailto:Jebebox;earthlink.net] Sent: Friday, October 18, 2002 11:14 PM To: CF-Talk Subject: RE: session vars and locking You are correct... but i think its better to copy the variables to local scope in one sequence... instead of a lot cflocks

RE: Using JSP alongside CFML

2002-10-21 Thread Joe Eugene
Does anybody know how to get better debugging information with CFMX JSP? Sometimes i get the stack error with Refer Documentation.. which doesnt help alot.. Any Ideas? Joe On Mon, 21 Oct 2002 13:21:19 -0700 Chris Kief [EMAIL PROTECTED] wrote: There are a couple things in the release notes

CFMX Issues/Bugs Database?

2002-10-22 Thread Joe Eugene
Vernon, I understand that you and MM team have been working on issues with CFMX. I was wondering.. if you can post current issues/bugs with CFMX and bugs status on MM site? Something like what sun has on Java.. check it out.. i really like this.. it makes a developers day..

RE: CFMX Issues/Bugs Database?

2002-10-22 Thread Joe Eugene
Community Manager Macromedia, Inc. -- Macromedia Certified Professional CF blog at http://vvmx.blogspot.com -Original Message- From: Joe Eugene [mailto:jebmail;earthlink.net] Sent: Tuesday, October 22, 2002 11:36 AM To: CF-Talk Subject: CFMX Issues/Bugs

RE: Known CFMX issues under consideration for upcoming Updater release

2002-10-22 Thread Joe Eugene
Does MM have plans to support Oracle 9i AS? Joe -Original Message- From: Todd [mailto:todd;web-rat.com] Sent: Tuesday, October 22, 2002 5:45 PM To: CF-Talk Subject: Re: Known CFMX issues under consideration for upcoming Updater release * Coldfusion won't run on JRockit 7.0 (Java

RE: Exporting to Excel Quandry

2003-02-16 Thread Joe Eugene
spreadsheet. What happens is everytning is in a new row. I have played around with the delimiters, but nothing. This should work. Try using Html table code in your output. ie cfoutput table trtd/td/tr.. /table /cfoutput Joe Eugene -Original Message- From: Bruce Sorge [mailto

Re: CFMX Bug with setdomaincookie?

2003-02-17 Thread Joe Eugene
want to enable J2EE sessions. Once you have done that, Use IE and change default Cookie settings to Prompt.. you should be able to see whats goin on then. Joe Eugene ---Original Message--- From: Stefan Salzbrunn [EMAIL PROTECTED] Sent: 02/17/03 08:58 AM To: CF-Talk [EMAIL PROTECTED

RE: CF update BUG in MX. Who at MM can I yell at?

2003-02-19 Thread Joe Eugene
Why do want to use CFUPDATE? Use regular CFQUERY with Insert Statement!. Joe Eugene -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 19, 2003 2:55 PM To: CF-Talk Subject: CF update BUG in MX. Who at MM can I yell at? pulling hair

Array Initialization

2003-02-19 Thread Joe Eugene
I cant find a way to initialize an array in CF like in Java. Example (Java Way) String appServers[] = {JRun,CFMX,WebLogic,ORAS}; What is the CF Equivalent in One line of code like above? Thanks Joe Eugene ~| Archives

RE: CF update BUG in MX. Who at MM can I yell at?

2003-02-19 Thread Joe Eugene
not an INSERT statement. I meant Update SQL Statement... Typo! Hey.. that isnt hard to figure out..is it? Joe Eugene -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 19, 2003 11:08 PM To: CF-Talk Subject: RE: CF update BUG in MX. Who at MM

RE: Array Initialization

2003-02-19 Thread Joe Eugene
There isn't. This is wierd, i wonder if there is a way to invoke the Java Environment to do this. Joe Eugene -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 20, 2003 12:18 AM To: CF-Talk Subject: Re: Array Initialization There isn't

RE: Array Initialization

2003-02-19 Thread Joe Eugene
already know that syntax, Yeah.. below is the standard in CF.. but hey CFMX translates CF Code in Java code... is there a work around? Joe Eugene -Original Message- From: Patricia G. L. Hall [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 20, 2003 12:44 AM To: CF-Talk

RE: Array Initialization

2003-02-19 Thread Joe Eugene
cfset appServers = listToArray(JRun,CFMX,WebLogic,ORAS) Am aware of the above. You are creating a list and converting it to an array.. this is not the same as... String x[]={a,b,c}; Joe Eugene -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: Array Initialization

2003-02-20 Thread Joe Eugene
a way to use a bit of JSP, I think its all comming down to the fact.. Will CFMX be able to use Primitive Data Types (int,double..) and Primitive Array Types.. This would be very cool!. Joe Eugene -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday

OT: IBM/Informix Object DB's

2003-02-23 Thread Joe Eugene
I was wondering if anyone has worked with IBM U2 and RedBack(Middle tier?) products. Would like to know how these products work and their advantages etc. Thanks Joe Eugne ~| Archives:

RE: cfscript object array reference

2003-02-23 Thread Joe Eugene
objURL[i].xmlText; Joe Eugene -Original Message- From: Taco Fleur [mailto:[EMAIL PROTECTED] Sent: Sunday, February 23, 2003 11:08 PM To: CF-Talk Subject: cfscript object array reference objXMLHTTP = createObject(COM, Microsoft.XMLHTTP); The code below creates an array

RE: cfscript object array reference

2003-02-24 Thread Joe Eugene
think objURL is an array.. sounds like xarr=arrayNew(1); xarr[1]=structNew(); xarr[1].FirstName=Taco; xarr[1].LastName=Fleur; Then you can call something like you did xarr[1].FirstName (== Taco) Joe Eugene -Original Message- From: Taco Fleur [mailto:[EMAIL PROTECTED] Sent: Monday

RE: cfscript object array reference

2003-02-24 Thread Joe Eugene
Did u figure this out... have you tried something like.. xStruct=structNew(); xStruct=objURL; cfdump var=#xStruct# Joe Eugene -Original Message- From: Taco Fleur [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 4:05 AM To: CF-Talk Subject: Re: cfscript object array

RE: Problem with list loop

2003-02-24 Thread Joe Eugene
This should work.. cfoutput cfloop index=i from=1 to=#listLen(Countries,,)# !--- am not sure why you want to do cfinsert..why not just insert--- cfquery name= datasource= timeout=30 insert into tableName values('#listGetAt(Countries,i,,)#'); /cfquery /cfloop /cfoutput Joe Eugene

RE: Problem with list loop

2003-02-24 Thread Joe Eugene
a list loop.. Joe Eugene -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 11:17 PM To: CF-Talk Subject: RE: Problem with list loop With CFQUERY and INSERT INTO? Am using DWMX and it's context sensitive help for CFML (compared

RE: Problem with list loop

2003-02-24 Thread Joe Eugene
Am glad it worked for you.. try to grab a SQL book for the weekend:). Joe Eugene -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 11:59 PM To: CF-Talk Subject: RE: Problem with list loop This code (finally) worked :) cfoutput

RE: FBX3 AND CFMX (CFC Problems?)

2003-02-25 Thread Joe Eugene
Since Hal, John and some other people here have found problems with CFC's. Can you guys please share the problems that you are aware of regarding CFC's? This would be very helpful. Appreciate it. Joe Eugene -Original Message- From: Nick de Voil [mailto:[EMAIL PROTECTED] Sent: Tuesday

RE: MX can't parse processing instructions?

2003-02-27 Thread Joe Eugene
What are you trying to do? Apply XSLT to an xml document? Joe Eugene -Original Message- From: James Alexander [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 6:31 PM To: CF-Talk Subject: MX can't parse processing instructions? I'm trying to use the IMPORT processing

RE: msft taking over macromedia

2003-03-02 Thread Joe Eugene
MM running exchange for email? thought it was interesting. https://webmail.macromedia.com/exchange/logon.asp Joe Eugene -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED] Sent: Sunday, March 02, 2003 11:22 AM To: CF-Talk Subject: Re: msft taking over macromedia anyone

RE: OnLoad for cfinput?

2003-03-02 Thread Joe Eugene
Is there an alternative to the body onload=document.forms.LoginForm.UserEmailAddress.focus(); You can try.. an inline script at the end of your page like.. /body /html script language=JavaScript document.forms[0].elements['UserEmailAddress'].focus(); /script Joe Eugene -Original

RE: dynamically created session variables

2003-03-03 Thread Joe Eugene
CFSET Session.#FieldName# = #Evaluate(FieldName)# You have a few choices 1. cfset session['#myFieldName#'] = form.someField 2. structAppend(session, form); // simple struct copy 3. session.frmStruct = duplicate(form); // deep copy Hope this helps. Joe Eugene -Original Message

JRun Config to Hotload Objects?

2003-03-03 Thread Joe Eugene
I think myself or someone else asked this question a while ago... Can remember now. Where is the xml config to Hotload Objects? What *.xml and element/Attribute? Thanks Joe Eugene ~| Archives: http://www.houseoffusion.com

RE: Help porting ASP to CF

2003-03-03 Thread Joe Eugene
What is Request(SearchInput).Count? You are creating an addressArray with the entire form variables, Are you sure.. these are the parameters to the COM Object? Look at the COM Object Function.. and check exactly what it requires as parameters. Joe Eugene -Original Message- From

RE: ODBC Problems?

2003-03-03 Thread Joe Eugene
Sounds like the CFMX ODBC Connection Polling Framework, whatever it uses might be acting up. Question is...Has anybody seen problems with CFMX ODBC connections being dropped? Either SQL-Server ODBC or any other ODBC configured with CFMX. Joe Eugene -Original Message- From: Botts, Tom

RE: ODBC Problems?

2003-03-03 Thread Joe Eugene
? Is this an MM aware issue, any patches available? Thanks Joe Eugene -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 7:04 PM To: CF-Talk Subject: RE: ODBC Problems? Joe wrote: Question is...Has anybody seen problems with CFMX ODBC

RE: debug output not working in CFMX

2003-03-03 Thread Joe Eugene
I can't get debugging to fly in CFMX. Can you get debugging to work on the local server machine? http://localhost/? Are u running cfmx standalone (default port 8500) or with IIS? Joe Eugene -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Monday, March 03

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
go download CFX_HTTPVer2 (written by...).. is it? Others here have also noted the same problem, Can Anybody from Macromedia Comment on this ODBC issue? OR can Macromeida tell us... WE HAVE A BUG in ODBC Engine, Go use JDBC! Joe Eugene -Original Message- From: Jochem van Dieten [mailto

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
on this ODBC issue in CFMX? Thanks Joe Eugene Joe Eugene -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 10:48 AM To: CF-Talk Subject: Re: ODBC Problems? Joe Eugene wrote: IF something like CFHttp doens't work in CFMX

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
Mike, We dont have any support licences and as far as i know to contact Tech Support we have to pay for the support. This is really a Macromedia Product (CFMX) Problem and we are not willing to pay to resolve MM Product Problems. Please let me know, if you can help. Thanks Joe Eugene

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
is not the answer to CFMX ODBC problems. Joe Eugene -Original Message- From: Mike Chambers [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 5:14 PM To: CF-Talk Subject: Re: ODBC Problems? If the issue is a CFMX issue, then you do not have to pay anything. mike chambers

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
I find your post rather brash, and not necessary for this venue. No one is forcing you to use MX. I dont think i asked for your consent. If you dont like the post, JUST DELETE IT. Joe Eugene -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Tuesday

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
Connections are NOT Stable or NOT supposed to work. Joe Eugene -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 7:29 PM To: CF-Talk Subject: RE: ODBC Problems? I am not the ONLY person that has complained about CFMX ODBX Problems, others

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
in such a manner. Am not willing to give my credit card for Problems related to Macromedia Products. Joe Eugene -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 7:51 PM To: CF-Talk Subject: RE: ODBC Problems? BTW the use proper channels line

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
personally spend hours testing CFMX... Alot of unproductive hours.. and Macromedia wants us to pay to REPORT bugs in CFMX. This is riduculous. Joe Eugene -Original Message- From: Bud [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 7:36 PM To: CF-Talk Subject: Re: ODBC Problems

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
Here you go. Sorry i didn't post it earlier: http://www.macromedia.com/support/email/wishform/ I have already submitted the problem, from Sean's earlier post. My email confirmation didnt even give me tracking no or anything else...Who knows where this goes! Joe Eugene -Original Message

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
h, that's a wonder...huh. well, we use adv sql server 2000, cfmx, and iis on 1 live server and 1 dev server, both have sp 2, and both are ROCKIN How are your Database Connections Configured? ODBC? Or SQL-Server JDBC Drivers? Joe Eugene -Original Message- From: Tony Weeg

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
think that the key here is running CFMX as a named user. I couldn't get it to work when it ran as system. I am not sure, if this had any relevance. Joe Eugene -Original Message- From: Jeff Garza [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 10:47 PM To: CF-Talk Subject: RE

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
I find your post rather brash, and not necessary for this venue. No one is forcing you to use MX. What do you think this Venue is for? your boo hoo parade is nothing short of lame annoying I am glad you find it annoying... that was intentional!. Joe Eugene -Original Message

RE: Multiple selections into a DB

2003-03-04 Thread Joe Eugene
You might want to just insert the checkbox values into one field rather than having 5 fields for 5 selections. Once you re-display the page.. you can check these selection ids against your display ids... Its late! hope you get the idea. Joe Eugene -Original Message- From: Russ

RE: ODBC Problems?

2003-03-04 Thread Joe Eugene
Yet another Ignorant CFer..! what else can i say. Joe Eugene -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 12:18 AM To: CF-Talk Subject: Re: ODBC Problems? What do you think this Venue is for? I am glad you find it annoying

RE: Multiple selections into a DB

2003-03-04 Thread Joe Eugene
value=10 cfif listFind(selections,10)checked/cfif Joe Eugene -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 12:32 AM To: CF-Talk Subject: RE: Multiple selections into a DB I think I get what you're saying, but I've never done this before, so

  1   2   3   4   5   6   7   >