SELECT * FROM myTable WHERE columnId < 45;
while (rs.next(){
result of row1 goes to row1.txt;
result of row2 goes to row2.txt;
result of row3 goes to row3.txt;
result of row4 goes to row4.txt;
}
laolumichael 0 Newbie Poster
Recommended Answers
Jump to PostUnwrap your loop, ie
SELECT * FROM myTable WHERE columnId < 45...
result of current row goes to row1.txt;
rs.next();
result of current row goes to row2.txt;
rs.next();
result of current row goes to row3.txt;
rs.next();
result of current row goes to row4.txt;(or maybe it would be better to …
Jump to PostWhy is it not feasible?
All 6 Replies
JamesCherrill 4,733 Most Valuable Poster Team Colleague Featured Poster
laolumichael 0 Newbie Poster
JamesCherrill 4,733 Most Valuable Poster Team Colleague Featured Poster
laolumichael 0 Newbie Poster
JamesCherrill 4,733 Most Valuable Poster Team Colleague Featured Poster
laolumichael 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.