• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

data mismatch error

 
Greenhorn
Posts: 24
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Im writing a simple program to read and write from a database.I keep getting an error which I dont understand [Data mismatch in criteria section]....when I try to run the getProduct...Can anyone help.Thanx in advance



[ November 16, 2004: Message edited by: Bear Bibeault ]

[edited subject and added code tags - jeanne]
[ November 16, 2004: Message edited by: Jeanne Boyarsky ]
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For future reference the topic title of Help does not help you but hurt you. Use a more detailed string of words!

Your error sounds like you are using the wrong type when you are passing parameters to your database. Using a double when it is looking for an integer or an integer when it is looking for a string.

Just an idea.

Eric
 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
http://www.frontpagewebmaster.com/m-178811/tm.htm

Here is a case of a similar error
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Roberto,
In the query, you have id has a string:
String query = "SELECT * from Product WHERE id = '" + item + "'" ;

but in the result set it is an int:
int id = rs.getInt("id") ;

One of these needs to be changed.
 
reply
    Bookmark Topic Watch Topic
  • New Topic