SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsDatabaseSQL 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 ASP Free Forums Sponsor:
  #1  
Old June 8th, 2005, 03:29 PM
ians ians is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2005
Posts: 13 ians User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 8 h 16 m 11 sec
Reputation Power: 0
Updating multiple fields from the same table with unique values

I would like to update multiple fields from a database with like this

Code:
       
UpdateSQL = "UPDATE product_info SET atomizer_media=" & "'" & atomizer_media & "'"
Set updateADODB = dbWriteConnection.Execute(UpdateSQL)
       
UpdateSQL = "UPDATE product_info SET is_repackable=" & "'" & is_repackable & "'"
Set updateADODB = dbWriteConnection.Execute(UpdateSQL)


Unforunately I can only get the first execution to work. I know I need to combine this statements somehow but the commas and quotations are throwing me off. Can anyone help? Thanks

Reply With Quote
  #2  
Old June 8th, 2005, 04:39 PM
ians ians is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2005
Posts: 13 ians User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 8 h 16 m 11 sec
Reputation Power: 0
Quote:
Originally Posted by ians
I would like to update multiple fields from a database with like this

Code:
       
UpdateSQL = "UPDATE product_info SET atomizer_media=" & "'" & atomizer_media & "'"
Set updateADODB = dbWriteConnection.Execute(UpdateSQL)
       
UpdateSQL = "UPDATE product_info SET is_repackable=" & "'" & is_repackable & "'"
Set updateADODB = dbWriteConnection.Execute(UpdateSQL)


Unforunately I can only get the first execution to work. I know I need to combine this statements somehow but the commas and quotations are throwing me off. Can anyone help? Thanks


Here is another approach I have going. Im getting a syntax error now.
Code:
       
UpdateSQL = "UPDATE product_info SET direct_instruct=" & "'" & new_direct_instruct & "'" 
UpdateSQL = UpdateSQL & " flush_media=" & "'" & new_flush_media & "'" 
     
Set updateADODB = dbWriteConnection.Execute(UpdateSQL)

Reply With Quote
  #3  
Old June 8th, 2005, 04:47 PM
lewy's Avatar
lewy lewy is offline
Alter Ego Wizard
ASP Free Specialist (4000 - 4499 posts)
 
Join Date: Jun 2004
Location: Edinburg Tx
Posts: 4,385 lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)  Folding Points: 1009 Folding Title: Novice Folder
Time spent in forums: 1 Month 1 Week 2 Days 28 m 31 sec
Reputation Power: 1561
I didn't see a where clause in your sql statement.
correct format is as follows:
Code:
UpdateSQL = "UPDATE product_info SET atomizer_media='" & atomizer_media & "', is_repackable='" & is_repackable & "' Where YOURPRIMARYKEYFIELDNAME = THEPRIMARYKEYFIELDTOUPDATE"
__________________
................... ASCII and ye shall receive ..................
Knowledge is the only resource on earth that multiplies when shared


Support the Shemzilla Project
Powered by C#

Reply With Quote
  #4  
Old June 8th, 2005, 04:52 PM
ians ians is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2005
Posts: 13 ians User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 8 h 16 m 11 sec
Reputation Power: 0
Quote:
Originally Posted by lewy
I didn't see a where clause in your sql statement.
correct format is as follows:
Code:
UpdateSQL = "UPDATE product_info SET atomizer_media='" & atomizer_media & "', is_repackable='" & is_repackable & "' Where YOURPRIMARYKEYFIELDNAME = THEPRIMARYKEYFIELDTOUPDATE"


Sorry about that. I forgot to include it with the post. I was commenting it in and out trying to see if it was the problem

Here is what I have so far, I had two or three of the fields working but now im getting the same error again

Code:
       UpdateSQL = "UPDATE product_info SET direct_instruct=" & "'" & new_direct_instruct & "'" 
       UpdateSQL = UpdateSQL & ", flush_media=" & "'" & new_flush_media & "'" 
       UpdateSQL = UpdateSQL & ", atomizer_media=" & "'" & new_atomizer_media & "'"
       UpdateSQL = UpdateSQL & ", is_repackable=" & "'" & new_is_repackable & "'"
       UpdateSQL = UpdateSQL & ", split_instruct=" & "'" & new_split_instruct & "'"
       UpdateSQL = UpdateSQL & ", process_feedback=" & "'" & new_process_feedback & "'"
       UpdateSQL = UpdateSQL & ", notes=" & "'" & new_notes & "'"
       UpdateSQL = UpdateSQL & "WHERE w_stream=" & "'" & Ucase(Searchstring) & "'"       

       Set updateADODB = dbWriteConnection.Execute(UpdateSQL)

Reply With Quote
  #5  
Old June 8th, 2005, 04:55 PM
lewy's Avatar
lewy lewy is offline
Alter Ego Wizard
ASP Free Specialist (4000 - 4499 posts)
 
Join Date: Jun 2004
Location: Edinburg Tx
Posts: 4,385 lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)lewy User rank is General 9th Grade (Above 100000 Reputation Level)  Folding Points: 1009 Folding Title: Novice Folder
Time spent in forums: 1 Month 1 Week 2 Days 28 m 31 sec
Reputation Power: 1561
Code:
UpdateSQL = "UPDATE product_info SET direct_instruct='" & new_direct_instruct & "'" 
UpdateSQL = UpdateSQL & ", flush_media='" & new_flush_media & "'" 
UpdateSQL = UpdateSQL & ", atomizer_media='" & new_atomizer_media & "'"
UpdateSQL = UpdateSQL & ", is_repackable='" & new_is_repackable & "'"
UpdateSQL = UpdateSQL & ", split_instruct='" & new_split_instruct & "'"
UpdateSQL = UpdateSQL & ", process_feedback='" & new_process_feedback & "'"
UpdateSQL = UpdateSQL & ", notes='" & new_notes & "'"
UpdateSQL = UpdateSQL & "WHERE w_stream='" & Ucase(Searchstring) & "'"       

Set updateADODB = dbWriteConnection.Execute(UpdateSQL)

Reply With Quote
Reply

Viewing: ASP Free ForumsDatabaseSQL Development > Updating multiple fields from the same table with unique values


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



 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

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





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway
Stay green...Green IT