![]() |
| |||||||
| Sponsored Links |
![]() | « Previous Thread | Next Thread » |
| | LinkBack | Thread Tools | Display Modes |
|
#1
| ||||
| ||||
| Hi, I'm back (with some problem). So, I got the error "No value given for one or more required parameters" when I try to viewing some data. Here's the code Code: strOther = "SELECT * FROM ShoppingCart WHERE CustomerCode = '239130793' AND OrderID = '239130793' AND OtherFabricFinishing IS NOT NULL AND ProductID = '351'"
rss.Open strOther, db, 3, 3 '<<HERE IS THE ERROR>>
If Not rss.EOF then
Response.Write(rss("OtherFabricFinishing"))
End If
rss.Close
![]() Thank you... |
| Sponsored Links |
|
#2
| ||||
| ||||
| if those fields (CustomerCode, OrderID and ProductID) are number datatypes in your database, then you need to remove the single quotes around them.
__________________ Quote of the Month: Regret: It hurts to admit when you make mistakes - but when they're big enough, the pain only lasts a second. Questions to Ponder: Could it be that all those trick-or-treaters wearing sheets aren’t going as ghosts but as mattresses? iif([sarcasm]=true,iif([you have to ask]=true,"didn't work","ha ha ha"),"not sarcasm") copyright © 2008 sbenj69 |
|
#3
| ||||
| ||||
| Hi Mehere, Actually the type of both are text... >.< Did I miss something there? Thx |
|
#4
| ||||
| ||||
| This error is also given if there is a misspelled field name.
__________________ jmurrayhead If you agree with me... click the icon! If my post solved your problem, click the button in the lower right-hand corner of the post.Join our Folding team: DeveloperBarn Folding |
|
#5
| ||||
| ||||
| Hoya J!! I will check if there is an misspelled field name.. ^^ Thx |
|
#6
| ||||
| ||||
| for better efficnecy, consider changing this line: Code: rss.Open strOther, db, 3, 3 '<<HERE IS THE ERROR>> Code: Set rss = db.Execute(strOther) |
|
#7
| ||||
| ||||
| Thx bro |
![]() |
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| too few parameters error | todd2006 | SQL Development | 3 | August 4th, 2008 11:16 AM |
| help is required on php popups! | sujith.it | PHP Development | 1 | July 17th, 2008 02:02 PM |
| [Error] Object Required?!?!? | jarvelous | ASP Development | 2 | March 20th, 2008 12:46 PM |