Beispiel #1
0
 public static PreparedStatement prepareLoadByRegion(java.sql.Connection c) throws SQLException {
   String str =
       "select s.id, s.type, s.version from bindingscan s where "
           + " s.id in (select r.scan from bindingscanregion r where r. chromosome=? and "
           + "((r.startpos <= ? and r.stoppos >= ?) or (r.startpos >= ? and r.startpos <= ?)))";
   return c.prepareStatement(str);
 }
Beispiel #2
0
 public static PreparedStatement prepareLoadByLikeVersionType(java.sql.Connection c)
     throws SQLException {
   String query = "select id, type, version from " + "bindingscan where version like ? and type=?";
   return c.prepareStatement(query);
 }
Beispiel #3
0
 public static PreparedStatement prepareInsertExptStatement(java.sql.Connection c)
     throws SQLException {
   String str = "insert into bindingscanToExpt (scan, scanexpt, scantype) values (?, ?, ?)";
   return c.prepareStatement(str);
 }
Beispiel #4
0
 public static PreparedStatement prepareInsertRegionStatement(java.sql.Connection c)
     throws SQLException {
   String str =
       "insert into bindingscanregion (scan, chromosome, startpos, stoppos) values (?, ?, ?, ?)";
   return c.prepareStatement(str);
 }
Beispiel #5
0
 public static PreparedStatement prepareInsertParamStatement(java.sql.Connection c)
     throws SQLException {
   String str = "insert into bindingscanparam (scan, key, value) values (?, ?, ?)";
   return c.prepareStatement(str);
 }
Beispiel #6
0
 public static PreparedStatement prepareInsertStatement(java.sql.Connection c)
     throws SQLException {
   String str =
       "insert into bindingscan (id, type, version) values " + "(bindingscan_id.nextval, ?, ?)";
   return c.prepareStatement(str);
 }