Hi. I ran across another problem. Not sure what's going on. Here is my SELECT statement:
SELECT * FROM ZIP WHERE ZIP =" + s;
String s = zip.getText();
This executes great until I enter a zip code that starts with a 0. Then nothing comes back. What am I missing. Why can't my statement find the zip codes that begin with zero, but can find all the others? Does getText() strip off zeros? If so, how do I solve this problem??
Thanks in advance!!