Search the web
Sign In
New User? Sign Up
coldfusion-howto · ColdFusion Tips Tutorial Help Questions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 43751 - 43780 of 44526   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
43751
I found an article which explained how to use "result" to get the last autonumber inserted into a database. This trick works in Coldfusion 8. It does not...
Linda Burnside
ihatespam22222
Offline Send Email
Oct 3, 2008
8:23 pm
43752
what db are you using? On Fri, Oct 3, 2008 at 3:23 PM, Linda Burnside...
Greg Morphis
omenchaos
Offline Send Email
Oct 3, 2008
8:26 pm
43753
MySQL this time, but sometimes, I am using Access and would like to know how to do it then, too. Getting the max number of the id field seems risky in that two...
Linda Burnside
ihatespam22222
Offline Send Email
Oct 3, 2008
8:31 pm
43754
Use <cftransaction> <cftransaction> {insert query} {getMax query} </cftransaction> ... From: Linda Burnside <linda@...> To:...
Ross Valenti
rossv1
Online Now Send Email
Oct 3, 2008
8:34 pm
43755
For MySQL try LAST_INSERT_ID() For Access.... try a different DB ;) There's no reason anyone should be using Access.. use MySQL or Postgres or Apache Derby or...
Greg Morphis
omenchaos
Offline Send Email
Oct 3, 2008
8:35 pm
43756
I've always did a select right after with a "when" used to make sure I have the users record and an ordered by id desc with a max rows of 1. Hasn't failed me...
Phillip M. Vector
lance_lake
Online Now Send Email
Oct 3, 2008
8:39 pm
43757
While I definitely agree with you on that, sometimes our employers don't give us much of a choice. Eric _____ From: coldfusion-howto@yahoogroups.com ...
Eric Roberts
woad
Online Now Send Email
Oct 3, 2008
8:46 pm
43758
I have seen the use of an insert code and then you look where the insert code is to grab the id. Insert #insert_code# Select id Where insert code=#insert_code#...
Eric Roberts
woad
Online Now Send Email
Oct 3, 2008
8:52 pm
43759
I like the <cftransaction> approach. Thanks everybody for the help. Linda _____ From: coldfusion-howto@yahoogroups.com ...
Linda Burnside
ihatespam22222
Offline Send Email
Oct 6, 2008
6:04 pm
43760
The method I prefer is to use a named exclusive cflock tag to single-thread the insert and then get max. That way you don't have to worry if your select query...
John Bartlett
wyntermoonwolf
Offline Send Email
Oct 6, 2008
7:44 pm
43761
I believe Access does support transaction processing. ... From: John Bartlett <jbartlett@...> To: coldfusion-howto@yahoogroups.com Sent: Monday,...
Ross Valenti
rossv1
Online Now Send Email
Oct 6, 2008
8:13 pm
43762
Does anyone know how to create the option box on yahoo for mail, messenger, radio, etc. that is on the right side? If you roll over the mail for instance, it...
gassmann56560
Offline Send Email
Oct 6, 2008
9:19 pm
43763
Hello, I have a new website I'm coding that I need some help on. Let me see if I can sum things up in a few points. 1. There's a large amount of code already...
Komputer Wizard
kompwizard
Offline Send Email
Oct 7, 2008
7:05 pm
43764
Could the FORM variable used in the statement below have any problems when utilized in a heavily used multithreaded application? I am using a form post to...
Steve
pilotstevek
Online Now Send Email
Oct 7, 2008
8:40 pm
43765
That looks just fine and it's single-threading your session access but you want to increase your timeout. If it can't gain an exclusive lock on the session...
John Bartlett
wyntermoonwolf
Offline Send Email
Oct 7, 2008
9:12 pm
43766
Hi All, We have urgent openings with Fortune 500 Company. *Requirement:* Coldfusion (Mumbai and Pune based candidates preffered) *Experience:* 2yrs *Location:*...
parul sinha
sinha.soni@...
Send Email
Oct 8, 2008
2:53 pm
43767
Okay so you have this code that is supposed to count the characters in a textbox area, which I guess goes into a .cfc file and save it in the custom tags...
Eva
callaroselilly
Offline Send Email
Oct 9, 2008
4:54 am
43768
It sounds like he copied the UDF into the session scope (why?) and then it references the result of a query that was named "read". Something like: <cffunction...
John Bartlett
wyntermoonwolf
Offline Send Email
Oct 9, 2008
5:01 am
43769
I have a cf form where an email address is enered. If another address needs to be entered, they click a button and another input field popsup. I was given...
Uraidiot
uraidiot2000xyz
Offline Send Email
Oct 9, 2008
3:03 pm
43770
Thanks, I just put it out there as a component and then called it as a component and it works fine that way. I wasn't sure why he suggested "loading to a...
Eva
callaroselilly
Offline Send Email
Oct 10, 2008
2:56 am
43771
I have a form that submits to itself. My submit is the standard : <input type="submit" name="btnsubmit" value="Submit Your Order"> When the form is submitted,...
Uraidiot
uraidiot2000xyz
Offline Send Email
Oct 13, 2008
1:35 am
43772
I have a form that submits to itself. My submit is the standard : <input type="submit" name="btnsubmit" value="Submit Your Order"> When the form is submitted,...
Uraidiot
uraidiot2000xyz
Offline Send Email
Oct 13, 2008
1:36 am
43773
Use a hidden field instead. You can submit the page without ever using the submit button by putting your cursor inside a text field and hit the enter button....
Hank Miller
hankcfman
Online Now Send Email
Oct 13, 2008
2:36 am
43774
Hello, I have a product table with multiple rows of similar products but with different prices. product table fields: brand, model, saleprice acer...
SB
nomansland10000
Offline Send Email
Oct 13, 2008
7:59 am
43775
Hello, I have a product table with multiple rows of similar products but with different prices. product table fields: brand, model, saleprice ... acer...
SB
nomansland10000
Offline Send Email
Oct 13, 2008
8:00 am
43776
select p.brand, p.model, p.saleprice from product p where p.saleprice=(select max(saleprice) from product where brand=p.brand and model=p.model) -John ... ...
John Bartlett
wyntermoonwolf
Offline Send Email
Oct 13, 2008
8:14 am
43777
Thanks John. Just tried using your query. I have 20000 rows of data and the page is timing out. SB ... From: John Bartlett To: coldfusion-howto@yahoogroups.com...
SB
nomansland10000
Offline Send Email
Oct 13, 2008
8:24 am
43778
You'll need to create indexes on your fields. ... From: "SB" <srimantab@...> To: <coldfusion-howto@yahoogroups.com> Sent: Monday, October 13, 2008 1:23...
John Bartlett
wyntermoonwolf
Offline Send Email
Oct 13, 2008
8:32 am
43779
Got it to work now! Thanks John ... From: SB To: coldfusion-howto@yahoogroups.com Sent: Monday, October 13, 2008 9:23 PM Subject: Re: [coldfusion-howto] Help...
SB
nomansland10000
Offline Send Email
Oct 13, 2008
8:34 am
43780
Got it to work! Thanks. ... From: John Bartlett To: coldfusion-howto@yahoogroups.com Sent: Monday, October 13, 2008 9:32 PM Subject: Re: [coldfusion-howto]...
SB
nomansland10000
Offline Send Email
Oct 13, 2008
8:36 am
Messages 43751 - 43780 of 44526   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help