Re: how to store a movie file?

2000-09-10 Thread Jon Tillman
On Sun, 10 Sep 2000, JF spake thusly: can you please tell me how to store the images/movie files in the database so that if i click on the image later , i should able to run that file to watch the movie. Is there any way in the cf to do this?? I'm using sql server7 database with cold fusion

Re: how to store a movie file?

2000-09-10 Thread JF
At 11:22 PM 9/9/2000, you wrote: On Sun, 10 Sep 2000, JF spake thusly: can you please tell me how to store the images/movie files in the database so that if i click on the image later , i should able to run that file to watch the movie. Is there any way in the cf to do this?? I'm using

Re: how to store a movie file?

2000-09-10 Thread Gena
can you please tell me how to store the images/movie files in the database so that if i click on the image later , i should able to run that file to watch the movie. Is there any way in the cf to do this?? I'm using sql server7 database with cold fusion 4.5 I wouldn't store

CF hosting - within 20 $ -pls suggest

2000-09-10 Thread CF-Help _India
Hi... Could any of u please suggest any provider with cold fusion support any sort of database support... Regards Vikram.P. __ FREE voicemail, email, and fax...all in one place. Sign Up Now! http://www.onebox.com

Re: Database Blunders

2000-09-10 Thread Mark Adams
Thanks, Bud I actually do want all the TeeTimes from the FixedTeeTime Table but I don't want the TeeID values from the Calendar table this is where I am confused should I redesign my tables? -Mark :o) - Original Message - From: Bud [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: Number Format Question

2000-09-10 Thread Bud
On 9/9/00, Mark Adams penned: I need to format this phone number, #NumberFormat(PhoneNumber)# to look like this 555-222- but I am not sure how to properly mask it. Any Ideas? The easiest way is to give them 3 fields. area_code size=3 maxlength=3, exchange size=3 maxlength=3, pnumber size=4

Re: cffile

2000-09-10 Thread Bud
On 9/10/00, CF-Help _India penned: Hi.. Could someone suggest/give code to me on how i can use cffile instead of a table/database Some code examples will really be helpfull Regards Vikram What are you trying to do? An example of part the file you're trying to read would be nice. Are you

RE: cffile and cfloop ?

2000-09-10 Thread Bud
On 9/9/00, Jeff Beer penned: How about: cfif NOT FileExists('D:/xy/text.txt') cffile action="write" file="D:/xy/text.txt" output="" addnewline="no" /cfif cfoutput query="collectData" cffile action="append" file="D:/xy/text.txt" output="#begriff#"

Re: Custom Functions in ColdFusion

2000-09-10 Thread Kay Smoljak
Great article! I do have a question about it though, if anyone has had a read through and maybe tried it out... The examples Michael gives use server variables... which in a shared hosting environment I assume could cause problems. Could the same thing be done using application variables? Maybe

RE: cffile and cfloop ?

2000-09-10 Thread Jeff Beer
This is much more efficient, Bud. However, it depends on how long the cumulative records are. I haven't tested this on 4.5+, but under 4.01, if I tried to write a variable to disk that was over about 32k, the CF server would spike at 100% CPU and lock up completely, requiring a reboot. Just a

RE: CFStudio 4.5 Memory Hog

2000-09-10 Thread Ken Wilson
As others have said, get rid of that Win95/98 OS right away. Investing in Win2K will be the best performance boost you can give that box and your productivity will likely go up as result of the time saved. Ken -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent:

RE: CF hosting - within 20 $ -pls suggest

2000-09-10 Thread Chris Montgomery
http://www.abihosting.com Chris Montgomery [EMAIL PROTECTED] Web Development Consulting http://www.astutia.com Allaire Consulting Partner NetObjects Reseller 210-490-3249/888-745-7603Fax 210-490-4692 Allaire Software Sale! http://www.astutia.com/store Find a Job in San

Re: CF hosting - within 20 $ -pls suggest

2000-09-10 Thread Peter Theobald
ABIhosting.com At 12:38 AM 9/10/00 -0700, CF-Help _India wrote: Hi... Could any of u please suggest any provider with cold fusion support any sort of database support... Regards Vikram.P. __ FREE voicemail, email, and fax...all in one place.

Re: cffile

2000-09-10 Thread Peter Theobald
The most efficient way is to store the movies in a directory that is available to the web server. Then you can just serve up a link: cfoutput a href="#videodir#/#filename#"Click here to view movie/a /cfoutput And the Cold Fusion server doesn't even have to get involved in sending the file. Of

Re: Custom Functions in ColdFusion

2000-09-10 Thread Peter Theobald
Application variables must be locked just as much as Server variables. At 07:57 PM 9/10/00 +0800, Kay Smoljak wrote: Great article! I do have a question about it though, if anyone has had a read through and maybe tried it out... The examples Michael gives use server variables... which in a

Re: Custom Functions in ColdFusion

2000-09-10 Thread Michael Dinowitz
Great article! I do have a question about it though, if anyone has had a read through and maybe tried it out... Thanks. :) The examples Michael gives use server variables... which in a shared hosting environment I assume could cause problems. Could the same thing be done using application

Re: cffile

2000-09-10 Thread Al Musella, DPM
or cfcontent. You can also use hard to guess filenames by prepending a UUID to the filename. Al At 12:36 PM 9/10/2000 -0400, you wrote: Of course, this opens the directory to nosy people trying random file names to see movies that haven't been "given". If that's a security problem, then

Need Help With a Query

2000-09-10 Thread Gary J. Groomer
I am having a problem pulling what I want from a couple of tables and any help would be greatly appreciated. Find below a simple synopsis of the two tables. Table(A) - CategoryName CategoryID --- CategoryName11 CategoryName2

Re: Need Help With a Query

2000-09-10 Thread Tom Muck
Try SELECT DISTINCT a.CategoryName FROM Table(A) a, Table(B) b WHERE a.CategoryId = b.CategoryID AND b.ItemID = 20 tom - Original Message - From: "Gary J. Groomer" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, September 10, 2000 1:43 PM Subject: Need Help With a Query I am

RE: CF hosting - within 20 $ -pls suggest

2000-09-10 Thread Steve Pierce
www.shanje.com has unlimited domains, unlimited email, and CF is $25 with no setup fee. They also offer SQL 7. -= Steve -Original Message- From: CF-Help _India [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 10, 2000 2:38 AM To: [EMAIL PROTECTED] Subject: CF hosting - within 20 $

Re: Need Help With a Query

2000-09-10 Thread Gary J. Groomer
That did it. Thanks, Gary - Original Message - From: "Tom Muck" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, September 10, 2000 10:50 AM Subject: Re: Need Help With a Query Try SELECT DISTINCT a.CategoryName FROM Table(A) a, Table(B) b WHERE a.CategoryId = b.CategoryID

Re: Need Help With a Query

2000-09-10 Thread Alex Puritche
Gary, Something like this SELECT DISTINCT a.CategoryName FROM Table(A) a, Table(B) b WHERE a.CategoryId = b.CategoryID AND b.ItemID = 20 Sunday, September 10, 2000, 8:43:45 PM, you wrote: Gary I am having a problem pulling what I want from a couple of tables and any Gary help

RE: cffile and cfloop ?

2000-09-10 Thread Dave Watts
This is much more efficient, Bud. However, it depends on how long the cumulative records are. I haven't tested this on 4.5+, but under 4.01, if I tried to write a variable to disk that was over about 32k, the CF server would spike at 100% CPU and lock up completely, requiring a

RE: Categories/ Sub Cats, etc.

2000-09-10 Thread Correa, Orlando (ITSC)
I used one a couple years ago at http://www.ihs.gov/misc/links_gateway/sub_categories.cfm?Sub_Cat_ID=050102. Where it uses paired numbers for each category. For example 01=computers, 0101=software, 010101=ColdFusion studio, etc... This simple method allows up to ninety-nine subcategories per

redirect

2000-09-10 Thread Jim Taylor
How do I redirect a url -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message to [EMAIL

RE: Categories/ Sub Cats, etc.

2000-09-10 Thread Chris Montgomery
Michael, See if this article helps: http://www.defusion.com/articles/index.cfm?ArticleID=63 Chris Montgomery [EMAIL PROTECTED] Web Development Consulting http://www.astutia.com Allaire Consulting Partner NetObjects Reseller 210-490-3249/888-745-7603Fax 210-490-4692 Allaire

Perl and CF

2000-09-10 Thread Michael J. Sammut -- Four Eyes Productions -- think | plan | create
OK, I asked this once and I got a very good answer but I am still screwing something up. I have this perl script (a poll). It is typically parsed via an include on a .shtml page. My question is how do I parse with CF. I have one poll that uses an exec cgi include and the other a simple

Re: Custom Functions in ColdFusion

2000-09-10 Thread Kay Smoljak
On Sun, 10 Sep 2000 13:03:27 -0400, in cf-talk Michael Dinowitz wrote: You could change it to use application vars, but would still need locking (at least for the setting). That was what I was thinking... I was less concerned about locking and more concerned about other users setting server

RE: Perl and CF

2000-09-10 Thread Michael Sheldon
You will probably need to do a CFHTTP call to the page. CF's CFINCLUDE is a "raw" include function, it reads the file into the CF template, and will execute any *coldfusion* code in it. Michael J. Sheldon http://www.desertraven.com/ Make a fast friend, adopt a greyhound! -Original

CFGRID

2000-09-10 Thread Parker, Kevin
Can someone shed some light on this mystery for me please. I've set up a CFGRID where insert works OK and I can edit cell data which is updated via a CFGRIDUPDATE. When I add some CFGRIDCOLUMN code, insert appends a row but won't let me enter data in any of the cells nor can I edit any existing

Re: Operation must use an updateable query

2000-09-10 Thread David Shadovitz
Your system and the host may well have different versions of the CF server. I recall similar posts; the problems were seen with CF server 4.5, which should be upgraded to 4.5.1 (sp1?). -David On Fri, 8 Sep 2000 14:54:50 +1000 [EMAIL PROTECTED] writes: Hi there, I have a very simple

RE: Operation must use an updateable query

2000-09-10 Thread Peter Tilbrook
They may need to update the Microsoft Data Access Control (see http://www.microsoft.com/data/). Peter Tilbrook Internet Applications Developer Aspect Computing Pty. Ltd. 19-25 Moore Street Turner, ACT, 2612 AUSTRALIA http://www.aspect.com.au Phone: (02) 6247 7677 Fax: (02) 6249 1620 Mobile:

query with two values from the one table

2000-09-10 Thread Kay Smoljak
Hi all, I'm stuck on the following query (SQL Server 7). I have this: cfquery name="get_messages" datasource="#application.dsn#" select messages.text, messages.edit_date, users.name from messages, users where users.id = messages.sender /cfquery which is fine. However, if