Visual Basic Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgrammingVisual Basic Programming

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:
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today!
  #1  
Old September 30th, 2004, 01:56 AM
sh_joy sh_joy is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Posts: 10 sh_joy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Exclamation get value from variable to use in SQL statement

hello all.. i need help regarding following SQL statement. I just want to use the value i get from my dpname variable and use it in my SQL statement in the following manner.

my code:

dim dpname
dpname = request.form("dptname")
for s = 0 to UBound(arrname)

sql_insert="UPDATE" & <%=dpname%> & "SET Units =" &unitarray(s)& ",Submitted =' "&theDate&" ' "

sqlin=sql_insert+" WHERE Items =' " & arrname(s) & " ';"

Conn.Execute sqlin
NExt

error showen in IE:

Error Type:
Microsoft VBScript compilation (0x800A03EA)
Syntax error
/aspwork/addform.asp, line 60, column 23
sql_insert="UPDATE" & <%=dpname
----------------------^

Reply With Quote
  #2  
Old September 30th, 2004, 02:54 PM
koolgift koolgift is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2004
Posts: 96 koolgift User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 52 m 57 sec
Reputation Power: 5
The dpname is it a table name?

Update [table name] set [column name]=[value to update] where [condition]

PS: I think you should leave some space as code show below also
Code:
sql_insert="UPDATE " & <%=dpname%> & " SET Units =" &unitarray(s)& ",Submitted =' "&theDate&" ' "

sqlin=sql_insert+" WHERE Items =' " & arrname(s) & " ';"

Reply With Quote
  #3  
Old September 30th, 2004, 04:25 PM
Memnoch's Avatar
Memnoch Memnoch is offline
Unholy Moderator
ASP Free God 14th Plane (11500 - 11999 posts)
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 11,738 Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 1 h 34 m 28 sec
Reputation Power: 443
Try
Code:
dpName = Request.Form("dptname")

For i = 0 To UBound(arrname)
   Conn.Execute("UPDATE " & dpName & " Set Units = " & unitArray(i) & ", Submitted = #" & theDate & "# WHERE Items = '" & arrName(i) & "';")
Next

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingVisual Basic Programming > get value from variable to use in SQL statement


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 | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway