In a previous article, "GGP" <> said:
> String sqlListData = "select " + unitID + ", " + unitName + "
>from " + tableName;
> rs3 = stmt3.executeQuery(sqlListData); //This is where the
>error occurs. All the strings in stmt3 are fine (correct spelling,
>etc.)
Print out the sqlListData string, and paste it into an interactive SQL
client to verify that it's correct. 99% of the time, you've forgotten a
space or a comma or something.
--
Paul Tomblin <>
http://blog.xcski.com/
Do you have a point, or are you saving it for a special occasion?
-- David P. Murphy