/[projects]/android/TrainInfoService/src/dk/thoerup/traininfoservice/StationDAO.java
ViewVC logotype

Diff of /android/TrainInfoService/src/dk/thoerup/traininfoservice/StationDAO.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 589 by torben, Mon Feb 8 19:25:12 2010 UTC revision 737 by torben, Wed May 19 07:40:00 2010 UTC
# Line 63  public class StationDAO { Line 63  public class StationDAO {
63                  return result;                  return result;
64          }          }
65                    
66                    /*
67             * this code requires theses statements are run on database in order to do ILIKE searches against aliases (which is defines as array of varchar(64) )
68             *     create function rlike(text,text) returns bool as
69             *     'select $2 ilike $1' language sql strict immutable;
70         *     create operator ~~~ (procedure = rlike, leftarg = text, rightarg = text, commutator = ~~);
71             */
72          public List<StationBean> getByName(String name) throws SQLException {          public List<StationBean> getByName(String name) throws SQLException {
73                  String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, 0.0 " +                  String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address, 0.0 " +
74                  "FROM trainstations " +                  "FROM trainstations " +
75                  "WHERE name ILIKE ? AND enabled = true " +                  "WHERE (name ILIKE ? OR ? ~~~ ANY(aliases)) AND enabled = true " +
76                  "ORDER BY name ";                  "ORDER BY name ";
77    
78                                    
# Line 80  public class StationDAO { Line 85  public class StationDAO {
85                          stmt = conn.prepareStatement(SQL);                          stmt = conn.prepareStatement(SQL);
86                                                    
87                          stmt.setString(1, name + "%");                          stmt.setString(1, name + "%");
88                            stmt.setString(2, name + "%");
89                                                    
90                          res = stmt.executeQuery();                          res = stmt.executeQuery();
91                          result = convertResultset(res);                          result = convertResultset(res);
# Line 95  public class StationDAO { Line 101  public class StationDAO {
101                  return result;                  return result;
102          }          }
103                    
104            //the "hack" with max 2.5 degrees latitude and longitude is only valid since we only service danish trains
105          public List<StationBean> getByLocation(double latitude, double longitude) throws SQLException {          public List<StationBean> getByLocation(double latitude, double longitude) throws SQLException {
106                  String SQL = "SELECT * FROM ( "+                  String SQL = "SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address," +
107                  "               SELECT id,name,latitude,longitude,stationcode_fjrn,stationcode_stog, stationcode_metro, address," +                                           "       earth_distance( earth_coord, ll_to_earth(?,?))::int AS calcdist " +
108                  "                     earth_distance( ll_to_earth(latitude,longitude), ll_to_earth(?,?))::int AS calcdist " +                                           "FROM trainstations " +
109                  "               FROM trainstations " +                                           "WHERE enabled = true AND abs(latitude-?)<2.5 AND abs (longitude-?)<2.5 " +
110                  "               WHERE enabled = true " +                                           "ORDER BY calcdist ASC " +
111                  "       ) AS trainstations2 " +                                           "LIMIT 4 ";
                 "ORDER BY calcdist ASC " +  
                 "LIMIT 4 ";  
112                  List<StationBean> result;                  List<StationBean> result;
113                  Connection conn = null;                  Connection conn = null;
114                  PreparedStatement stmt = null;                  PreparedStatement stmt = null;
# Line 113  public class StationDAO { Line 118  public class StationDAO {
118                          stmt = conn.prepareStatement(SQL);                          stmt = conn.prepareStatement(SQL);
119                          stmt.setDouble(1, latitude);                          stmt.setDouble(1, latitude);
120                          stmt.setDouble(2, longitude);                          stmt.setDouble(2, longitude);
121                            stmt.setDouble(3, latitude);
122                            stmt.setDouble(4, longitude);                  
123                          res = stmt.executeQuery();                          res = stmt.executeQuery();
124                          result = convertResultset(res);                          result = convertResultset(res);
125                                                    
# Line 155  public class StationDAO { Line 162  public class StationDAO {
162                          return result;                          return result;
163                                                    
164           }           }
165                     public static String getStationName(int stationID) {
166                     String station = "";
167    
168                     Connection conn = null;
169                     try {
170                             conn = DBConnection.getConnection();
171                             Statement stmt = conn.createStatement();
172                             ResultSet rs = stmt.executeQuery("SELECT name FROM trainstations WHERE id=" + stationID);
173                             if (rs.next()) {
174                                     station = rs.getString(1);
175                             }
176    
177                     } catch (Exception e) {        
178                     } finally {
179                             try {
180                                     if (conn != null && !conn.isClosed())
181                                             conn.close();
182                             } catch (Exception e) {}
183                     }
184    
185                     return station;
186             }
187  }  }

Legend:
Removed from v.589  
changed lines
  Added in v.737

  ViewVC Help
Powered by ViewVC 1.1.20