PreparedStatement pstmt1 = dbconn.prepareStatement(statement1);
pstmt1.executeUpdate();
} catch (Exception e) {e.printStackTrace();}
CSVReader cSVReader = new CSVReader(new InputStreamReader(in), ',', '"', 1);
String [] nextLine;
while ((nextLine = cSVReader.readNext()) != null) {
System.out.println("read from CSV url: " + nextLine[0] + "," + nextLine[1] + "," + "etc...");
String statement = "insert into compass.program_profile_info " +
"(agency_name, program_name, program_type_code, program_type, " +
"target_pop_a_code, target_pop_a_name, units_total, units_occupied, " +
"units_available, contact_name, contact_phone, program_address_full, feed_source, update_time_stamp) " +