• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Searching data using NON English Language Words Doesn't Work!

 
Ranch Hand
Posts: 172
Netbeans IDE MySQL Database Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all!
Below is my code



All I'm trying to do is to search the data from the database and is doesn't show up!
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
At which point does the execution of the code start to deviate from what you expected to happen? What are the inputs you're using, and what the relevant intermediate values? What path does the execution follow through (not what you think it should take, but what it actually takes)? Seeing no debugging output being generated anywhere in the code, how have you tried to debug this issue? In short: TellTheDetails

(As an aside on code quality: a) the use of interpolated SQL instead of properly setting parameters makes using PreparedStatement pointless, b) using scriptlets (a.k.a. Java code in JSP) is an outdated technique to be avoided, and c) comments about obsolete browsers like "(IE4+, NS6+)" do not inspire confidence about the JavaScript part.
 
Come have lunch with me Arthur. Adventure will follow. This tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic