Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

WHERE VALUENAME IN (#FORMVALUE#)

Status
Not open for further replies.

gadjodilo77

Programmer
Sep 23, 2005
79
0
0
NL
Hello,

I have a question.Imagine I have the following FORMvalue or Formvariable: BER-06-3005,BER-06-3008,BER-06-3008
What I want to do is to make a query using this formvalue. Each BER-06-xxxx number is a namenumber in an database table. What I want to do is make a Query and select the data for each BER-06-xxxx value (BER-06-xxxx separated by a comma in the formvalue/formvariable). I tried several things but I don't know how to do it.

I tried it like this:

<cfquery name="name" datasource="source">
SELECT * FROM dev WHERE dev_volgnr IN (#FORMvalue#)
</cfquery>

This gives the following error however:
Error Executing Database Query.
Column not found: Unknown column 'BER' in 'where clause'

So because of the error I tried it by putting ' at the front and the end of the FORMvalue variable, like this:

<cfquery name="name" datasource="source">
SELECT * FROM dev WHERE dev_volgnr IN ('#FORMvalue#')
</cfquery>

 
I'm not quite sure what the datatype "namenumber" is, but for character types you have to enclose each individual value in single quotes in the IN() function:

IN('BER-06-3005','BER-06-3008','BER-06-3008')

HTH,

Phil Hegedusich
Senior Programmer/Analyst
IIMAK
-----------
Eschewing obfuscation diurnally.
 
Or you can use the listQualify() function, like so:

Code:
 SELECT *
 FROM dev
 WHERE dev_volgnr IN (#listQualify(FORMvalue)#)

Hope this helps,

JAlpino

 
Hi,

Thank you all! I used the following now:

<cfif IsDefined ("FORM.value") AND #FORM.value# NEQ "">
<cfset lijstlengte= #ListLen(FORM.FORM.value)#>
<cfif IsDefined("lijstlengte") AND #lijstlengte# NEQ 0>
<cfset nieuwkopvar = ListQualify(FORM.value,"'",",","ALL")>
<cfquery name="" datasource="">
SELECT * FROM devices WHERE dev_volgnr IN (#preserveSingleQuotes(nieuwkopvar)#)
</cfquery>

But I'm curious if this will work also:

<cfqueryparam cfsqltype="varchar" value="#FORM.value#" list="yes">

Grt, Kabbi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top