Re: Search bug. Help

This WebDNA talk-list message is from

2002


It keeps the original formatting.
numero = 43495
interpreted = N
texte = Okay, first of all, you do NOT need the &CTtype=num unless you're going to sort the results, or unless you're going to actually perform a search that does some kind of greater than or less than comparison instead of an equal to or a contains comparison.But you're not sorting the results, nor are you trying to do a range-based search, so you should definitely leave the &CTtype=num out of the search.And if all you're looking for is a way to retrieve the records with (shape=rd) AND (ct=.20 or ct=.25) you can easily run two consecutive searches that perform EQUAL TO comparisons for the exact records you need:[search db=mydb.db&eqSHAPEdatarq=rd&eqCTdatarq=.20] [founditems] [/founditems] [/search][search db=mydb.db&eqSHAPEdatarq=rd&eqCTdatarq=.25] [founditems] [/founditems] [/search]Or if you do not have any other values in the ct field within the range of .20-.25 you could easily perform a RANGE search:[search db=mydb.db&eqSHAPEdatarq=rd&rnCTdatarq=.20 .25&CTtype=num]Or you could do a search that finds all the values which are CLOSE TO the designated value in the first cl parameter:[search db=mydb.db&eqSHAPEdatarq=rd&clCTdatarq=.225&clCTdatarq=.025&CTtype=num]Or if you're actually seeking all the rd records which are less than 0.51 (for example) you could do this search:[search db=mydb.db&eqSHAPEdatarq=rd&lsCTdatarq=0.51&CTtype=num]In other words, there's usually lots of ways to do things in webdna ... :)>The following search returned mime header information to the browser and >then crashes webcat. > >[search db=mydb.db&eqSHAPEdatarq=rd&woCTdatarq=.20,.25,&CTtype=num] > >Mydb looks like this: > >shape ct >rd .20 >rd .25 >pr .50 >rd 1.25 >rd 1.20 > >When I add cttype=num it crashes but without it it finds .20 inside 1.20 > >IF I remove the , it doesn't crash but only finds the first value .20 and >not .20 and .25. > >How do you tell webcat to search for multiple values ie: .20 & .25 as whole >numbers. Shouldn't there be a wn like there is a ww in wordbreaks. > >Any help would be appreciated > > > >------------------------------------------------------------- >This message is sent to you because you are subscribed to > the mailing list . >To unsubscribe, E-mail to: >To switch to the DIGEST mode, E-mail to > >Web Archive of this list is at: http://search.smithmicro.com/ ------------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: To switch to the DIGEST mode, E-mail to Web Archive of this list is at: http://search.smithmicro.com/ Associated Messages, from the most recent to the oldest:

    
  1. Re: Search bug. Help (John Peacock 2002)
  2. Re: Search bug. Help (Kenneth Grome 2002)
  3. Re: Search bug. Help (Kenneth Grome 2002)
  4. Re: Search bug. Help (Clint Davis 2002)
  5. Re: Search bug. Help (Brian Fries 2002)
  6. Re: Search bug. Help (Andrew Simpson 2002)
  7. Re: Search bug. Help (John Peacock 2002)
  8. Re: Search bug. Help (Kenneth Grome 2002)
  9. Re: Search bug. Help (marc malacarme 2002)
  10. Re: Search bug. Help (Kenneth Grome 2002)
  11. Re: Search bug. Help (Kenneth Grome 2002)
  12. Re: Search bug. Help (marc malacarme 2002)
  13. Re: Search bug. Help (marc malacarme 2002)
  14. Re: Search bug. Help (Kenneth Grome 2002)
  15. Re: Search bug. Help (Andrew Simpson 2002)
  16. Re: Search bug. Help (Kenneth Grome 2002)
  17. Re: Search bug. Help (Brian Fries 2002)
  18. Re: Search bug. Help (Rob Marquardt 2002)
  19. Re: Search bug. Help (Gary Krockover 2002)
  20. Re: Search bug. Help (Rob Marquardt 2002)
  21. Re: Search bug. Help (marc malacarme 2002)
  22. Re: Search bug. Help (marc malacarme 2002)
  23. Re: Search bug. Help (Brian Fries 2002)
  24. Re: Search bug. Help (Brian Boegershausen 2002)
  25. Re: Search bug. Help (Andrew Simpson 2002)
  26. Re: Search bug. Help (marc malacarme 2002)
  27. Re: Search bug. Help (marc malacarme 2002)
  28. Re: Search bug. Help (Glenn Busbin 2002)
  29. Re: Search bug. Help (Brian Boegershausen 2002)
  30. Search bug. Help (marc malacarme 2002)
Okay, first of all, you do NOT need the &CTtype=num unless you're going to sort the results, or unless you're going to actually perform a search that does some kind of greater than or less than comparison instead of an equal to or a contains comparison.But you're not sorting the results, nor are you trying to do a range-based search, so you should definitely leave the &CTtype=num out of the search.And if all you're looking for is a way to retrieve the records with (shape=rd) AND (ct=.20 or ct=.25) you can easily run two consecutive searches that perform EQUAL TO comparisons for the exact records you need:[search db=mydb.db&eqSHAPEdatarq=rd&eqCTdatarq=.20] [founditems] [/founditems] [/search][search db=mydb.db&eqSHAPEdatarq=rd&eqCTdatarq=.25] [founditems] [/founditems] [/search]Or if you do not have any other values in the ct field within the range of .20-.25 you could easily perform a RANGE search:[search db=mydb.db&eqSHAPEdatarq=rd&rnCTdatarq=.20 .25&CTtype=num]Or you could do a search that finds all the values which are CLOSE TO the designated value in the first cl parameter:[search db=mydb.db&eqSHAPEdatarq=rd&clCTdatarq=.225&clCTdatarq=.025&CTtype=num]Or if you're actually seeking all the rd records which are less than 0.51 (for example) you could do this search:[search db=mydb.db&eqSHAPEdatarq=rd&lsCTdatarq=0.51&CTtype=num]In other words, there's usually lots of ways to do things in webdna ... :)>The following search returned mime header information to the browser and >then crashes webcat. > >[search db=mydb.db&eqSHAPEdatarq=rd&woCTdatarq=.20,.25,&CTtype=num] > >Mydb looks like this: > >shape ct >rd .20 >rd .25 >pr .50 >rd 1.25 >rd 1.20 > >When I add cttype=num it crashes but without it it finds .20 inside 1.20 > >IF I remove the , it doesn't crash but only finds the first value .20 and >not .20 and .25. > >How do you tell webcat to search for multiple values ie: .20 & .25 as whole >numbers. Shouldn't there be a wn like there is a ww in wordbreaks. > >Any help would be appreciated > > > >------------------------------------------------------------- >This message is sent to you because you are subscribed to > the mailing list . >To unsubscribe, E-mail to: >To switch to the DIGEST mode, E-mail to > >Web Archive of this list is at: http://search.smithmicro.com/ ------------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: To switch to the DIGEST mode, E-mail to Web Archive of this list is at: http://search.smithmicro.com/ Kenneth Grome

DOWNLOAD WEBDNA NOW!

Top Articles:

Talk List

The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...

Related Readings:

[WebDNA] Topic... (2004) Trouble with carts (2000) RE: PIXO support (1997) need e-commerce recommendation (2004) Trouble with Netscape (1998) WCS Newbie question (1997) Alternating BGColors in Table Rows (1998) Wierd Password Tension (1999) Progress !! WAS: Trouble with formula.db (1997) Max Record length restated as maybe bug (1997) Request Time Out (1997) A Global Variable (1997) Separate SSL Server (1997) Requiring that certain fields be completed (1997) no global [username] or [password] displayed ... (1997) Server crash (1997) Shownext never shows next...still (1997) [WebDNA] Receive JSON POST (2019) 2 easy questions re: [showif] and [sendmail] (1997) Satisfy Me ! was: Why can't support be satisfying to (2000)