ColdFusion Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreColdFusion Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old February 20th, 2004, 08:17 AM
terryt terryt is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2000
Posts: 9 terryt User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Shop Cart-Problem w/ Unique Order No

I have a shopping cart and just don't get the session variable thing to pass from one page to the other. In my Access DB I have a table with order numbers and get the MAX ID + 1 ok but need to update that table so next user gets a different order number.

If someone could show me how to set up the application.cfm page and then pass the #session.token# in the pages to keep it unique I would love to use it.

-----Here is application page code-------

<CFAPPLICATION NAME="ccstore"
CLIENTMANAGEMENT="YES"
SESSIONMANAGEMENT="YES"
SessionTimeOut="#CreateTimespan(0,0,5,0)#"
ApplicationTimeout="#CreateTimeSpan(0,0,20,0)#"
SetClientCookies="no"
>

<cfparam name="application.ds" default="store_biz1usa_com">


<!---<cfset Session.AutoToken="?CFID=#CFID#&CFTOKEN=#CFTOKEN#">
<cfset Session.XXAutoToken="?CFID=#CFID#&CFTOKEN=#CFTOKEN#">-------->


-----Here is query in first page getting MAX ID-------

<!--------Gets Order ID from DB-------->
<cfquery name="getorderid" datasource="#application.ds#">

Select
Max(OrderNO+1) as Orderid

From ordernumbers

</cfquery>


I have tried to update table with

<cfquery database="#application.ds#>
Update ordernumbers
SET orderno=#orderno#
Company=#orderno#

</cfquery>


When I do this there is no update to the record.
This would place a value in a field in this record so that the next unique request would get the next max orderno

Any help greatly appreciated.

Terry

Reply With Quote
  #2  
Old February 20th, 2004, 11:21 AM
kiteless kiteless is offline
Moderator
Dev Shed God (5000 - 5499 posts)
 
Join Date: Jun 2002
Location: Raleigh, NC
Posts: 5,091 kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level)kiteless User rank is General (90000 - 100000 Reputation Level) 
Time spent in forums: 2 Weeks 5 Days 2 h 53 m 27 sec
Reputation Power: 966
First, you don't have to manually build up a variable to hold the id and token. CF generates one already, called "session.urltoken". So in all your links and form posts, you do:

<a href="sompage.cfm?#session.urltoken#">link</a>

Next, as far as I can tell this is just wrong:

Quote:
<cfquery database="#application.ds#>
Update ordernumbers
SET orderno=#orderno#
Company=#orderno#

</cfquery>


Without a WHERE clause, this will update ALL rows in your table. And I guess I'm still unclear what you are trying to do. Do you want to insert the newest id and company into the odernumbers table?

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreColdFusion Development > Shop Cart-Problem w/ Unique Order No

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap