// WARNING: file "Results.java" generated from "Results.tj" // Changes should be applied on the source file. // Get results from "rs" by column number int rCustId = rs.getInt( 1); String rFirstName = rs.getString( 2); String rLastName = rs.getString( 3); float rBalance = rs.getFloat( 4); String rEmail = rs.getString( 5); wrongType rSthgElse = rs.get UNKNOWN ( 6); // Get results from "results" by column name int rCustId = results.getInt( "CUST_ID"); String rFirstName = results.getString( "FIRST_NAME"); String rLastName = results.getString( "LAST_NAME"); float rBalance = results.getFloat( "BALANCE"); String rEmail = results.getString( "EMAIL"); wrongType rSthgElse = results.get UNKNOWN ( "STHG_ELSE"); // WARNING: file "Results.java" generated from "Results.tj" // Changes should be applied on the source file.