I'm formatting a ResultSet to output to a CSV file. As such I really don't care about the Java types of the result set, beyond maybe knowing if it's text or ...
Hi Blake, ----------- ur post ---------------- You just get used to it after a while. ------------ end of post ---------------- Can u come up with a good solution instead of the statement made? Its mentioned in the JDK help that the column nos start from 1 onwards. BTW, My question is still not answered. Rgds, Seetesh
hi, have a nice day, everyone, i understand the parameter for getString() method is columnindex , can someone tell me how to i determine the parameter is belongs to ? in mycase , i have try on resultset.getString(3); which give me the tablename , is it the "3" belongs to tablename ? thank you !
When I insert to my result set, then move back a row the previouse records are only displaying 2 characters of each column. It seems the number of characters displayed when resultSet size was smaller was higher, not sure though I must test it again. More info on problem found in comments above problematic method. This is my Adapter to control ...
hey all! just a question. i ve been trying to do stuff with ResultSets. basically i ve got mysql connected and everything is fine except one little thing. when i get my ResultSet and then try to get the fields from it eg ResultSet result = selects.getResultSet(); /// this gives me my result set while(result.next()){ String email = result.getString("email"); String mess ...