/[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 588 by torben, Mon Feb 8 19:12:15 2010 UTC revision 737 by torben, Wed May 19 07:40:00 2010 UTC
# Line 40  public class StationDAO { Line 40  public class StationDAO {
40                        "FROM trainstations WHERE id=" + id + " AND enabled=true";                        "FROM trainstations WHERE id=" + id + " AND enabled=true";
41                                    
42                  Connection conn = null;                  Connection conn = null;
43                    Statement stmt = null;
44                    ResultSet res = null;
45                  StationBean result;                  StationBean result;
46                                    
47                  try {                  try {
48                          conn = DBConnection.getConnection();                          conn = DBConnection.getConnection();
49                                    
50                          Statement stmt = conn.createStatement();                          stmt = conn.createStatement();
51                          ResultSet res = stmt.executeQuery(SQL);                                  res = stmt.executeQuery(SQL);          
52                          res.next();                          res.next();
53                          result = convertSingleRow(res);                          result = convertSingleRow(res);
54                  } finally {                  } finally {
55                            if (res != null)
56                                    res.close();
57                            if (stmt != null)
58                                    stmt.close();
59                          if (conn != null)                          if (conn != null)
60                                  conn.close();                                  conn.close();
61                  }                  }
# Line 57  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                                    
79                  List<StationBean> result;                  List<StationBean> result;
80                  Connection conn = null;                  Connection conn = null;
81                    PreparedStatement stmt = null;
82                    ResultSet res = null;
83                  try {                  try {
84                          conn = DBConnection.getConnection();                          conn = DBConnection.getConnection();
85                          PreparedStatement 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                          ResultSet rs = stmt.executeQuery();                          res = stmt.executeQuery();
91                          result = convertResultset(rs);                          result = convertResultset(res);
92                                                    
93                  } finally {                  } finally {
94                          if (conn != null)                          if (res != null)
95                                    res.close();
96                            if (stmt != null)
97                                    stmt.close();
98                            if (conn!= null)
99                                  conn.close();                                  conn.close();
100                  }                  }
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;
115                    ResultSet res = null;
116                  try {                  try {
117                          conn = DBConnection.getConnection();                          conn = DBConnection.getConnection();
118                          PreparedStatement 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                          ResultSet rs = stmt.executeQuery();                          stmt.setDouble(3, latitude);
122                          result = convertResultset(rs);                          stmt.setDouble(4, longitude);                  
123                            res = stmt.executeQuery();
124                            result = convertResultset(res);
125                                                    
126                  } finally {                  } finally {
127                          if (conn != null)                          if (res != null)
128                                    res.close();
129                            if (stmt != null)
130                                    stmt.close();
131                            if (conn!= null)
132                                  conn.close();                                  conn.close();
133                  }                  }
134                  return result;                  return result;
# Line 116  public class StationDAO { Line 141  public class StationDAO {
141                          "ORDER BY name ";                          "ORDER BY name ";
142                                                    
143                          Connection conn = null;                          Connection conn = null;
144                            Statement stmt = null;
145                            ResultSet res = null;
146                          List<StationBean> result;                          List<StationBean> result;
147                                                    
148                          try {                          try {
149                                  conn = DBConnection.getConnection();                                  conn = DBConnection.getConnection();
150                                  Statement stmt = conn.createStatement();                                  stmt = conn.createStatement();
151                                  ResultSet res = stmt.executeQuery(SQL);                                  res = stmt.executeQuery(SQL);
152                                  result = convertResultset(res);                                  result = convertResultset(res);
153                          } finally {                          } finally {
154                                    if (res != null)
155                                            res.close();
156                                    if (stmt != null)
157                                            stmt.close();
158                                  if (conn!= null)                                  if (conn!= null)
159                                          conn.close();                                          conn.close();
160                          }                          }
# Line 131  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.588  
changed lines
  Added in v.737

  ViewVC Help
Powered by ViewVC 1.1.20