Re: Can Coldfusion Verity be this clever ???

2003-01-16 Thread Ian Vaughan
Yes I would like veritys search to search through the document and those fields in the table for more accurate reults and most importantly for the point below... Because in the search results page I want to use the doc summary from the database to display the actual summary of the document and

deleting Javascript Arrays

2003-01-16 Thread John McCosker
Hi!! I am trying to delete all entries in an array so it may be reused but I am finding it quite difficult, javascripts interpreter engine trys to deal with objects not occupying memeory, but it cannot be forced by javascript to do this. I tried setting a dummy array, xmlLog = new Array() dummy

Re: Visual Fusion - Thoughts?

2003-01-16 Thread James Sleeman
Pablo Varando wrote: Hello CF-Talk community: For the last year or so I've been working on an application called Visual FusionĀ© (Patent pending). I don't want to sound negative or anything, but I have to ask, why ? It sounds to me (after reading the thread) that what you are trying to

howto: Getting started with java and j2ee , and MX (was RE: J2EE References?)

2003-01-16 Thread webguy
There is a lot to learn - but everyone need to start somewhere right? :-) A lot of people just don't know where to start. Hopefully this mail will help them get started. In reality you can get on with a limited understanding, but you will probably enjoy learning more. I suggest you forget about

RE: EJB in CFMX for DB access, Entity Bean, Session Bean, or CFQUERY?

2003-01-16 Thread webguy
Hi, quite a good book huh ?;-) I agree with a lot of things Christian mentioned. I think its the Fast Lane rather than Fast Track :-) I just finished reading the CRM section of Ben Forta's CFMX/J2EE book and am curious about using Entity Beans for database access. The book described them as

RE: deleting Javascript Arrays

2003-01-16 Thread webguy
You can just to this myArray.length=0; LIKE : myarray = new Array() myarray[0] = a; myarray[1] = b; myarray[2] = c; myarray[3] = d; alert(myarray.length); alert(myarray.toString()); myarray.length = 2; alert(myarray.length); alert(myarray.toString()); REGARDS WG

Re: CDATA dup insert error Again

2003-01-16 Thread Webmaster
I just read a long thread on this and MM has it as a bug, but it seems they are not going to fix it. What a rip... - Original Message - From: Webmaster [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 11:22 PM Subject: CDATA dup insert error Again

Can Coldfusion Verity be this clever ???

2003-01-16 Thread Jennifer Knoblock
In the ColdFusion Developer's Journal, Vol. 2 Issue 6, there's an article called Making the Most of Verity that covers this exactly (with code). I used (and continue to use) it myself. It's really slick. http://www.sys-con.com/coldfusion HTH. Jen

RE: MBR

2003-01-16 Thread Robert Orlini
Hello All, Thanks for the help with the MBR. fdisk /mbr did the trick! Robert O. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 4:19 PM To: CF-Talk Subject: RE: MBR I installed an older version of System Commander dual boot software

Re: Can Coldfusion Verity be this clever ???

2003-01-16 Thread paul smith
OK. So you use Verity to search the docs for the IDs (only) of the relevant documents (with BLOCKFACTOR=100). You then use that list of IDs to select Summaries from the database. best, paul At 08:18 AM 1/16/03 +, you wrote: Yes I would like veritys search to search through the document

cfschedule question

2003-01-16 Thread Tony Weeg
hi there... is there a way with the cfschedule tag and the scheduler to give my clients access to scheduled events that are theirs? thank you ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring,

RE: cfschedule question

2003-01-16 Thread Clint Tredway
Not without you building an application that can track what schedules are whos. HTH, Clint -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 8:00 AM To: CF-Talk Subject: cfschedule question hi there... is there a way with the cfschedule tag

RE: cfschedule question

2003-01-16 Thread Tony Weeg
that's fine, a db to handle that, but is there any way to expose whats in the scheduler? for them tomodify, and then update, and expect the results to happen next scheduled run? I mean, I could easily create a db table that has some parameter info in it, and then have a scheduled page run

-OT- Javascript Question

2003-01-16 Thread Thane Sherrington
I'm passing a field name to a javascript function like this: onchange=VerifyCode(this); And I want to display the name of the field in the function, like this: var ErrorMsg=Code is wrong in+PassedFieldName; Alert(ErrorMsg); But when I do that, I get [object] instead of the fieldname. Is there

RE: -OT- Javascript Question

2003-01-16 Thread Timothy Heald
say your What do you name the variable in your function definition? function VerifyCode(thisField){ alert(thisField.name); } That should work. Tim -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 9:13 AM To: CF-Talk Subject:

Re: -OT- Javascript Question

2003-01-16 Thread Marius Milosav
you can use this.name Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Thane Sherrington [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: -OT- Javascript Question

2003-01-16 Thread Thane Sherrington
tAt 09:16 AM 01/16/03 -0500, Timothy Heald wrote: say your What do you name the variable in your function definition? function VerifyCode(thisField){ alert(thisField.name); } That should work. Excellent. Thanks. T

RE: cfschedule question

2003-01-16 Thread Clint Tredway
According to the refernce book, you can use the cfschedule tag to create,update, and delete a scheduled event. So I would say that you would need to have 2 tables, a client table and a schedule table. Store tha params of the scheduled event and just update or delete the event using the cfschedule

RE: cfschedule question

2003-01-16 Thread Tony Weeg
so yeah, to update, I guess you update, based on the name of the event? so how do I get the events that are there, lets say I make a change to an event in the admin, and the user wasn't expecting it, is there a way to get that data, the scheduled events that are already there, to show whats

RE: cfschedule question

2003-01-16 Thread Randell B Adkins
If your running CF5 depending on you havign access to use the CFRegistry function, you can get a listing from there. If I am not mistaken, it is located: HKEY_LOCAL_MACHINE\MACROMEDIA\ColdFusion\Schedule Something like that [EMAIL PROTECTED] 01/16/03 09:33AM so yeah, to update, I guess you

SQL find and replace tool or roll my own in CF

2003-01-16 Thread Mark W. Breneman
We are just about to start a major website redesign for one of our clients. In the SQL 2000 database they have stored 3-5 page articles with url links referring to pages that will no longer have that name after the website redesign. The second step we want to take is to remove all font tags that

RE: cfschedule question

2003-01-16 Thread Tony Weeg
oh yeah, I have access, I host the servers, and they are mine :) so, cool, but not...i have cfmxi wonder can I get it from there... let me check! ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce

RE: cfschedule question

2003-01-16 Thread Tony Weeg
nope, anyone know the cfmx reg keys that this might be stored in? ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message-

Re: IIS Virtual directory using a UNC path

2003-01-16 Thread cf-talk
We use IP addresses in our UNC paths all the time without any problems. Just make sure you have the proper account permissions and you should be fine. -Novak - Original Message - From: brook [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 9:19 PM

Re: CDATA dup insert error Again

2003-01-16 Thread cf-talk
Have you double checked your own cookies to make sure that the CFID/CFTOKEN you're getting is indeed a UUID? I don't think the issue is that you're the only one getting the error. I've seen several people who get the same thing. It's just that most either 1) Don't know what it is and therefore

RE: What's wrong with ASP.NET

2003-01-16 Thread Matthew Small
In my experience you have to explicitly check the box to install the .NET framework when doing Windows update. I imagine it's also possible that a program was installed that required the framework to be installed. .Exe files created with .NET also require the installation of the framework, and

cfif does not contain for file input

2003-01-16 Thread Jeremy Bunton
Hello, I am trying to do something like bleow before I do a file upload to check for an extension and it always hits the cflocation. Makes me think maybe the file feild is not being read properly. If I take the cfif out it uploads fine. cfif Form.filea does not contain .gif and Form.filea does

RE: cfschedule question

2003-01-16 Thread Tony Weeg
or are they stored in like some sort of xml file that I could tap into? ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original

Re: What's wrong with ASP.NET

2003-01-16 Thread cf-talk
Not that I'm one to side with Microsoft... but... The .NET Framework is a Recommended Update... NOT a Critical Update. It has been my experience that you should always pay attention to what you're installing. Critical updates are pretty straight forward... I usually don't even review them.

Re: CDATA dup insert error Again

2003-01-16 Thread cf-talk
I know this doesn't solve your problem... but... you can always roll your own. Heck, all it is (more or less) is setting a cookie on the client's browser with a UUID then writing/updating a database table. Toss the read routine in your application.cfm page and you'll end up reading the client's

RE: What's wrong with ASP.NET

2003-01-16 Thread Robertson-Ravo, Neil (RX)
.NET is cool; I just wish I had the time or use to get into it! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 16 January 2003 14:47 To: CF-Talk Subject: Re: What's wrong with ASP.NET Not that I'm one to side with Microsoft... but... The .NET Framework is

Re: What's wrong with ASP.NET

2003-01-16 Thread cf-talk
Matthew, As I recall it, the .NET Framework is located in the Recommended Updates section (at least in the W2K updater) and is turned on by default. The common mistake is to install all the Critical Updates without looking, then install all the Recommended Updates without looking. Suddenly you

Re: CDATA dup insert error Again

2003-01-16 Thread Dave Carabetta
Have you double checked your own cookies to make sure that the CFID/CFTOKEN you're getting is indeed a UUID? I don't think the issue is that you're the only one getting the error. I've seen several people who get the same thing. It's just that most either 1) Don't know what it is and therefore

Re: cfif does not contain for file input

2003-01-16 Thread cf-talk
It's early and I haven't had my coffee yet but I think what you're looking for is something like this: cfif Form.filea not contains .gif -Novak - Original Message - From: Jeremy Bunton [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 6:45 AM Subject: cfif

RE: What's wrong with ASP.NET

2003-01-16 Thread Robertson-Ravo, Neil (RX)
none of which can do any harm, and anyway I am sure the .NET framework is a download...its up to you to install it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 16 January 2003 14:56 To: CF-Talk Subject: Re: What's wrong with ASP.NET Matthew, As I recall

ColdFusion, WDDX, and Flash

2003-01-16 Thread paul smith
Any advantage to using Flash with WDDX for data syndication? For example, when a user makes a data request to a remote machine, which is passed via WDDX to the central machine where the data resides, would a Flash implementation require the user to download a Flash/WDDX/etc module? best, paul

Re: What's wrong with ASP.NET

2003-01-16 Thread Stephen Moretti
In my experience you have to explicitly check the box to install the .NET framework when doing Windows update. That has also been my experience, but the last time I did an update windowsupdate had kindly ticked the box and had I not been paying attention then it would have installed .NET

Re: SQL find and replace tool or roll my own in CF

2003-01-16 Thread John Paul Ashenfelter
Why wouldn't you use T-SQL? Easy enough to query the data and use the REPLACE, PATINDEX,etc to remove the text you're after. That is *far* easier than a CF app. Regards, John Paul Ashenfelter CTO/Transitionpoint [EMAIL PROTECTED] - Original Message - From: Mark W. Breneman [EMAIL

Re: CDATA dup insert error Again

2003-01-16 Thread WebMaster
Yeah, I thought of that, unfortunately, I can't rely on cookies. Life would be so much easier if I could just use cookies. I know this will start a thread, but with IE6, MS has made it so easy for users to turn off cookies, we have found that we loose customers on our e-commerce sites, so we have

RE: What's wrong with ASP.NET

2003-01-16 Thread Dave Watts
If you installed the latest service pack, the .Net framework has been installed. This isn't true with Windows 2000. The .NET Framework is not part of Service Pack 3. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

Re: CDATA dup insert error Again

2003-01-16 Thread WebMaster
Hi, see my last post. Yes it is indeed a uuid. I have read and understand all the tech notes. Why can't MM just foix the problem - Original Message - From: Dave Carabetta [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 9:56 AM Subject: Re: CDATA

RE: What's wrong with ASP.NET

2003-01-16 Thread Dave Watts
The .NET Framework is a Recommended Update... NOT a Critical Update. It has been my experience that you should always pay attention to what you're installing. I'm responding just because I really just want to strongly agree with this - especially when it comes to servers. The Windows Update

Re: J2EE References?

2003-01-16 Thread Chris Norloff
I just picked up J2EE Unleased by Bambara Allen, et al., published by SAMS, for $60. Looks good to me so far, though I don't doubt the statement below. a J2EE newbie, Chris Norloff -- Original Message -- From: [EMAIL PROTECTED] Reply-To: [EMAIL

Re: CDATA dup insert error Again

2003-01-16 Thread WebMaster
Yeah, I thought of that, unfortunately, I can't rely on cookies. Life would be so much easier if I could just use cookies. I know this will start a thread, but with IE6, MS has made it so easy for users to turn off cookies, we have found that we loose customers on our e-commerce sites, so we have

RE: What's wrong with ASP.NET

2003-01-16 Thread Dave Watts
I've never knowingly installed anything related to ASP.NET on this machine. I'm not saying that I wouldn't have, I just haven't. They could have gotten in piggy-backed on a Windows update, sure. You have certainly installed the .NET Framework, as others have pointed out. Whenever you

RE: cfschedule question

2003-01-16 Thread Dave Watts
nope, anyone know the cfmx reg keys that this might be stored in? CFMX doesn't store any configuration information in the registry. I think that scheduled events are stored in \CFusionMX\lib\neo-cron.xml. But, rather than edit that file directly while CF is running, you might instead want to

RE: -OT- Javascript Question - follow up

2003-01-16 Thread Thane Sherrington
At 09:16 AM 01/16/03 -0500, Timothy Heald wrote: function VerifyCode(thisField){ alert(thisField.name); } This worked, but now I'm having a problem with the focus. I'm using the following script. SCRIPT language=Javascript function VerifyCode(formField) {

Re: HTTP header info showing up on CFM pages...(problem with cflocation)

2003-01-16 Thread cftalk
I fixed it by commenting out the cflocation and adding a JScript to direct the page. Has anyone ever had this happen? - Original Message - From: cftalk [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 3:06 PM Subject: HTTP header info showing up on CFM

RE: SQL find and replace tool or roll my own in CF

2003-01-16 Thread Mark W. Breneman
T-SQL is a possibility but, I may have overly simplified the problem. The client database is made up of about 128 tables. About 1/2 of them may contain the items I want to strip/replace. And there may be up to 5 fields in each table that may need to be searched. I guess what I am looking for

MS Access

2003-01-16 Thread Robert Bailey
Being that I have mostly developed apps on MS SQL or Sybase, I am getting ready to embark an quite a large application using MS Access. My question is this, can you use joins at all in Access? I have written quite a few access apps, but nothing complicated enough to need any joins in the SQL.

Re: MS Access

2003-01-16 Thread Todd
Yup, you can use joins in access. ~Todd At 08:09 AM 1/16/2003 -0800, you wrote: Being that I have mostly developed apps on MS SQL or Sybase, I am getting ready to embark an quite a large application using MS Access. My question is this, can you use joins at all in Access? I have written quite a

RE: MS Access

2003-01-16 Thread Robertson-Ravo, Neil (RX)
Erm, if its a big project you sure as hell dont want to be doing it in Access - its a Desktop application. You should stick with MS SQL Server - its far more robust and is Enterprise level! -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent: 16 January 2003 16:10 To:

Re: HTTP header info showing up on CFM pages...(problem with cflocation)

2003-01-16 Thread Aaron Johnson
Hi Brian, I fixed it by commenting out the cflocation and adding a JScript to direct the page. Has anyone ever had this happen? I am having a problem with http info showing up on certain pages. I am clueless as to why. Has anyone had any problems with this? Here's what's showing up..

Re: MS Access

2003-01-16 Thread Scott Brady
Can you use joins at all in Access? Yes. (I'm certain you can use the syntax in the where clause (table1.myID = table2.myID), and fairly certain you can use the actual join syntax) Scott Brady http://www.scottbrady.net/

Re: MS Access

2003-01-16 Thread Bruce Sorge
Access does joins. - Original Message - From: Robert Bailey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 10:09 AM Subject: MS Access Being that I have mostly developed apps on MS SQL or Sybase, I am getting ready to embark an quite a large

RE: MS Access

2003-01-16 Thread Matthew Small
Yes, absolutely. Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 http://www.showstopperonline.com -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 11:10 AM To:

RE: cfschedule question

2003-01-16 Thread Tony Weeg
ok, thank dave. yeah, I do see those in the neo-cron.xml file...so, the question now, maybe for christian is, how the heck can I tap into that? manage the schedule, etc...what I don't want to do I just blind updating of events. ...tony Tony Weeg Senior Web Developer UnCertified Advanced

Re: HTTP header info showing up on CFM pages...(problem with cflocation)

2003-01-16 Thread samcfug
Are you on a Win2k Server? Does it have URLScan installed? = Douglas White group Manager mailto:[EMAIL PROTECTED] http://www.samcfug.org = | | - Original Message - | From: cftalk [EMAIL PROTECTED] | To: CF-Talk

Re: EJB in CFMX for DB access, Entity Bean, Session Bean, or CFQUERY?

2003-01-16 Thread Christian Cantrell
WG makes a good point about value objects. Network latency can add up quickly, especially when you are talking about three servers (servlet container/CFMX + application server + database server) rather than just two, and then even more so when your servers/clients are in different

RE: MS Access

2003-01-16 Thread Robert Bailey
Very cool, thanks Todd! Robert Bailey [EMAIL PROTECTED] Famous for nothing! http://www.tinetics.com -Original Message- From: Todd [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 8:14 AM To: CF-Talk Subject: Re: MS Access Yup, you can use joins in access. ~Todd At

RE: MS Access

2003-01-16 Thread Robert Bailey
Sometimes you really have to go with what they want, and what they desire it to be built on. I have already suggested using SQL, but they insist on using Access, so I can either turn it down or just go ahead and do it. The reason why they want to use Access is because the current app is running on

Re: MS Access

2003-01-16 Thread Bruce Sorge
Remember Neil that we (developers) are sometimes constrained to what the client has to use. If all the client has is Access, and they cannot or do not want to do the right thing by investing in an Enterprise DB solution, we have to respect that and continue on. Of course it is also our

Re: MS Access

2003-01-16 Thread Stephen Moretti
Are you aware that there are applications out there web based and running directly from Access across a LAN quite happily with upto a couple of million records? Obviously not! No, Access is not an enterprise level application, but if you know what you're doing and do the job well Access is a

RE: MS Access

2003-01-16 Thread Robert Bailey
The reason I asked this question, is because recently I had problems with some aliasing of tables in Access, so was a little worried, lol Robert Bailey [EMAIL PROTECTED] Famous for nothing! http://www.tinetics.com -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]]

Re: MS Access

2003-01-16 Thread Jochem van Dieten
Robert Bailey wrote: Being that I have mostly developed apps on MS SQL or Sybase, I am getting ready to embark an quite a large application using MS Access. My question is this, can you use joins at all in Access? Only inner and outer joins. Jochem

RE: MS Access

2003-01-16 Thread Robertson-Ravo, Neil (RX)
true, but have you laid out the cons of using Access i.e. connections, growth etc...? -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent: 16 January 2003 16:22 To: CF-Talk Subject: RE: MS Access Sometimes you really have to go with what they want, and what they

RE: MS Access

2003-01-16 Thread Tony Weeg
ahhh, but you will be the one who complains when access shits on itself. and as a responsible developer, you should warn them away from the ineptitudes of access, and how sql will behove. an ounce of prevention is worth more than a million pounds of cure. good luck. ...tony Tony Weeg Senior

RE: MS Access

2003-01-16 Thread Robertson-Ravo, Neil (RX)
Yep, I am no longer in that rut I don't deal with clients in the way I used to..we are in a luxury position of being able to dicate what platform things go on. I forget sometimes! -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent: 16 January 2003 16:23 To: CF-Talk

RE: MS Access

2003-01-16 Thread Robertson-Ravo, Neil (RX)
I can, and I will. wow, one million records...woooh, have you seen them running with 1m users or even hundreds? Access is not an enterprise level application, but if you know what you're doing and do the job well Access is a perfectly acceptable database for large and medium traffic

RE: MS Access

2003-01-16 Thread Robertson-Ravo, Neil (RX)
Hallelujah -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: 16 January 2003 16:34 To: CF-Talk Subject: RE: MS Access ahhh, but you will be the one who complains when access shits on itself. and as a responsible developer, you should warn them away from the

api to scheduler?

2003-01-16 Thread Tony Weeg
jochem do you have what dave watts referenced in his last email to my thread about cfschedule? thanks ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net

RE: MS Access

2003-01-16 Thread Robert Bailey
Obviously I would have explained the con's (do not see many pro's in Access as opposed to MS SQL) of using Access. There will only be a max of 13 connections at this point anyways, and that is if everyone uses it at the same time. When they do grow larger, and have the money to invest in MS SQL, I

Re: HTTP header info showing up on CFM pages...(problem with cflocation)

2003-01-16 Thread cftalk
I think that is what it is... Thanks for the reply! Brian - Original Message - From: Aaron Johnson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 10:28 AM Subject: Re: HTTP header info showing up on CFM pages...(problem with cflocation) Hi Brian, I

RE: -OT- Javascript Question - follow up

2003-01-16 Thread Lofback, Chris
Use formField.focus(); Chris Lofback Sr. Web Developer TRX Integration 28051 US 19 N., Ste. C Clearwater, FL 33761 www.trxi.com -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 10:40 AM To: CF-Talk Subject: RE: -OT- Javascript

RE: MS Access

2003-01-16 Thread Robert Bailey
Hope your coding is better then your grammar and spelling. :) Regardless, this will seem to get out of hand and I will apologize to the fullest for even posting this. I did not think it would create so much controversy. I will just finish with this: It is a rough market and any extra income is

RE: MS Access

2003-01-16 Thread Gary W. Sullivan II
The last thing I want to do today is enter into a debate that will never go anywhere, but... As much as I HATE to support it, I have to give MS Access at least a LITTLE credit. I helped set up an Access driven website (www.milestoneideas.com) in ASP about 5 years ago. I have never had any problems

RE: MS Access

2003-01-16 Thread Dave Watts
Being that I have mostly developed apps on MS SQL or Sybase, I am getting ready to embark an quite a large application using MS Access. My condolences. My question is this, can you use joins at all in Access? Yes, you can use joins, subqueries, and most other common SQL constructs. The

Re: MS Access

2003-01-16 Thread Jochem van Dieten
Robertson-Ravo, Neil (RX) wrote: I disagree, if aint using SP's or good T-SQL it aint right, You should look out of the window more often, there is a wealth of databases out there that don't use T-SQL but are enterprise class solutions. Jochem

RE: MS Access

2003-01-16 Thread Robertson-Ravo, Neil (RX)
jeez, we gave you the language! :-) its called not being bothered If you get SP's to work in mySQL, I would love to get a download! -Original Message- From: Robert Bailey [mailto:[EMAIL PROTECTED]] Sent: 16 January 2003 16:50 To: CF-Talk Subject: RE: MS Access Hope your coding is

RE: MS Access

2003-01-16 Thread Robertson-Ravo, Neil (RX)
I looked out once.. got the shock of my life...not doing that again! BTW guys, I have had the shittiest day for ages, so I am just being an arsesorry, I need a Beer and a Pizza. uurghh N p.s, Access is still shite -Original Message- From: Jochem van Dieten [mailto:[EMAIL

Re: MS Access

2003-01-16 Thread Stephen Moretti
I can, and I will. wow, one million records...woooh, have you seen them running with 1m users or even hundreds? No, I said a couple of million and yes I have seen Access applications running with 100s of users. Building Access applications that run this level of usage requires a

Character encoding - At wit's end

2003-01-16 Thread Bud
:) Hi all. OK, I'm trying to build an interface to UPS to agree to their Online Tools licensing. 1) I submit some XML and some XML is returned. One of the elements is the License Agreement. 2) Part of the license agreement is in French. For some unknown reason, it must be thus, even though

Re: CDATA dup insert error Again

2003-01-16 Thread Christian Cantrell
On Thursday, January 16, 2003, at 10:33 AM, WebMaster wrote: Do they even listen to this list??? Several people from Macromedia follow this list very closely. When I read your post, I contacted people in tech support to see if the bug still exists in CFMX (since it has been around since 4.5,

RE: MS Access

2003-01-16 Thread Robert Bailey
But does that mean you can butcher the language? :) And never said you can write a stored procedure in MySQL, I simply said it was a suggestion as opposed to Access that offer better performance, scalability, and reliability. Robert Bailey [EMAIL PROTECTED] Famous for nothing!

Macromedia TechNote on Database Performance

2003-01-16 Thread Joshua Miller
Does anyone have any information on changing the Isolation Level on MS SQL Server 2000 as referenced in: http://www.macromedia.com/support/coldfusion/releasenotes/mx/releasenote s_mx.html#perf Does this have much impact on performance? If so, how do I do it? There is no setting in the

RE: Character encoding - At wit's end

2003-01-16 Thread Robert Bailey
So the problem is that it the license that UPS is returning (in the XML Object) to you is in French to begin with? Everything else is in English? Robert Bailey [EMAIL PROTECTED] Famous for nothing! http://www.tinetics.com -Original Message- From: Bud [mailto:[EMAIL PROTECTED]]

RE: HTTP header info showing up on CFM pages...(problem with cflocation)

2003-01-16 Thread James Ang
Quick Answer: - HTTP 1.1 Persistent Connection feature (which is used by MS IIS and MS IE) - Miscalculated Content-Length header provided by CFAS (thanks to the combination of CFLOCATION + CFHTMLHEAD) - MS I.E. trusting the miscalculated values, and clearing its buffer based on false info. I am

OT: RSS Feed for CF-Talk

2003-01-16 Thread Michael Wilson
Hi, Is there an RSS feed available for this list? I checked the site, but didn't find any. I figured since the decision to make HOF a blog has come about; an RSS feed may be available or in the works. I was hoping to migrate CF-Talk (and associated HOF lists) from Outlook to Newz Crawler, which,

Resources for information on configuring CF Administrator (MX)

2003-01-16 Thread Joshua Miller
I'm looking for information regarding performance tuning CFMX using CF Administrator. Some things I'm unsure of that I'd like to find info on: Caching Trusted Cache: what's the performance gain here? Does this mean every time I change code I have to uncheck this and run the template,

RE: Macromedia TechNote on Database Performance

2003-01-16 Thread Debbie Dickerson
I think that was actually supposed to be pulled out of the docs. Here's what I was told regarding that setting: It turns out that the isolation level gain is nearly negligible, and can degrade performance in some cases...found after CFMX Server shipped. If you did want to try it in your

Re: howto: Getting started with java and j2ee , and MX (was RE: J2EE References?)

2003-01-16 Thread Sean A Corfield
On Thursday, Jan 16, 2003, at 03:33 US/Pacific, webguy wrote: Download a jsp/servlets container to get started. I recommend http://jakarta.apache.org/tomcat/. This will give you an understanding of the config file (web.xml etc) / the directory structure (WEB-INF etc.) / and jars (how java

RE: What's wrong with ASP.NET

2003-01-16 Thread S . Isaac Dealey
If you installed the latest service pack, the .Net framework has been installed. Nothing is going to happen on your server just because the framework is installed. The aspent_client gets installed in the webroot when the framework gets installed. This is just how the framework works. I

Re: Resources for information on configuring CF Administrator (MX)

2003-01-16 Thread ksuh
We added 1/2 million records to our database last night and performanceon some searches has slowed to a crawl. I know part of the issue can be fixed using stored procedures, but some of the variable queries are just painful. Will Full-Text indexing on SQL Server help speed up these

Re: Design Pattern Question

2003-01-16 Thread Sean A Corfield
On Sunday, Jan 12, 2003, at 09:13 US/Pacific, Mike Brunt wrote: Yes this is a good methodology to consider as we all move out of procedural methodologies to more 'OO' based concepts. Yet in my opinion there is a further dimension that Fusebox achieves, or has done for us, that I have not

Re: Need insights into best high load CFMX install

2003-01-16 Thread Sean A Corfield
I already replied privately to Mike but this probably warrants a public response too. On Monday, Jan 13, 2003, at 07:18 US/Pacific, Mike Brunt wrote: Hello, we are about to start a contract for a large eCommerce application and can recommend to our client what optimal configuration is

Re: CDATA dup insert error Again

2003-01-16 Thread WebMaster
Way Kool, thanks...I will keep an eye out on the hot fix list... Thanks... Nice to know u r listing. Sorry for the shouting... - Original Message - From: Christian Cantrell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 12:16 PM Subject: Re: CDATA dup

Query Caching Question

2003-01-16 Thread Joshua Miller
Ok, I've been reading up on query caching today and I think I've run into something that may cause me problems unless there is a way to dynamically name queries. I have an application that houses data for multiple sites - the data is referenced by a siteID that is set as a session variable. So

RE: What's wrong with ASP.NET

2003-01-16 Thread James Alexander
So bloody delete it. It's just a convenience thing MS does when the .NET framework is installed so that in the event that the server is intended to host .NET web apps, the directory will be available. The directory isn't even really necessary unless you plan to use Smart Nav in your .NET web apps.

RE: What's wrong with ASP.NET

2003-01-16 Thread Clint Tredway
Ok, I should have been more clear. The aspnet_client gets installed in all 'webroots' and i would bet that the directory in question is an application webroot setup in the webserver. that is why it got installed there. Don't take this the wrong way, but if you don't like it, just uninstall it,

RE: Query Caching Question

2003-01-16 Thread Raymond Camden
Why not simply store the query in the session scope? (This code assumes MX and no need for locks.) cfif not isDefined(session.qGetSite) cfquery name=session.qGetsite ... /cfquery /cfif Then you can simply... cfoutput query=session.qGetSite ... /cfoutput This also

  1   2   3   >