Merge "Omaha #4846 - Fix hydro queries" into omaha_16.1.1

Former-commit-id: 412b777c6daa76c5be146276520706d6014828b9
This commit is contained in:
Richard Peter 2015-09-04 09:05:09 -05:00 committed by Gerrit Code Review
commit dd8e4b448b
4 changed files with 9 additions and 9 deletions

View file

@ -35,8 +35,8 @@ import com.raytheon.viz.hydrocommon.data.ContactsData;
*
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* 20 Nov 2008 lvenable Initial creation
*
* 20 Nov 2008 lvenable Initial creation
* Sep 03, 2015 4846 rjpeter List out columns in select.
* </pre>
*
* @author lvenable
@ -52,7 +52,7 @@ public class ContactsDataManager extends HydroDataManager
/**
* Select statement.
*/
private final String SELECT_STATEMENT = "SELECT * FROM contacts";
private final String SELECT_STATEMENT = "SELECT lid, contact, phone, email, remark, priority FROM contacts";
/**
* Insert statement.

View file

@ -36,7 +36,7 @@ import com.raytheon.viz.hydrocommon.data.DescriptionData;
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* 02 Dec 2008 lvenable Initial creation
*
* Sep 03, 2015 4846 rjpeter List out columns in select.
* </pre>
*
* @author lvenable
@ -52,7 +52,7 @@ public class DescriptionDataManager extends HydroDataManager
/**
* Select statement.
*/
private final String SELECT_STATEMENT = "SELECT * FROM descrip";
private final String SELECT_STATEMENT = "SELECT lid, bed, divert, remark, ice, proximity, reach, res, topo FROM descrip";
/**
* Insert statement.

View file

@ -36,7 +36,7 @@ import com.raytheon.viz.hydrocommon.data.LocationAreaData;
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* 02 Dec 2008 lvenable Initial creation
*
* Sep 03, 2015 4846 rjpeter List out columns in select.
* </pre>
*
* @author lvenable
@ -52,7 +52,7 @@ public class LocationAreaManager extends HydroDataManager
/**
* Select statement.
*/
private final String SELECT_STATEMENT = "SELECT * FROM locarea";
private final String SELECT_STATEMENT = "SELECT lid, area FROM locarea";
/**
* Insert statement.

View file

@ -36,7 +36,7 @@ import com.raytheon.viz.hydrocommon.data.ProximityData;
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* 02 Dec 2008 lvenable Initial creation
*
* Sep 03, 2015 4846 rjpeter List out columns in select.
* </pre>
*
* @author lvenable
@ -52,7 +52,7 @@ public class ProximityDataManager extends HydroDataManager
/**
* Select statement.
*/
private final String SELECT_STATEMENT = "SELECT * FROM proximity";
private final String SELECT_STATEMENT = "SELECT proximity FROM proximity";
/**
* Private constructor.