- Timestamp:
- Aug 4, 2014, 4:27:44 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20140717/ippToPsps/jython/scratchdb.py
r37156 r37179 131 131 return filterID 132 132 133 ''' 134 Gets tess ID for this tess name 135 ''' 136 def getTessID(self, name): 137 138 sql = "SELECT tessID FROM TessellationType WHERE name = '" + name + "'" 139 try: 140 rs = self.executeQuery(sql) 141 rs.first() 142 tessID = rs.getInt(1) 143 except: 144 self.logger.errorPair("No tess ID found for tess", name) 145 tessID = -1 146 147 return tessID 148 133 149 ''' 134 150 Gets imageID from extern ID … … 476 492 ippDetectID BIGINT, \ 477 493 imageID INT, \ 494 catID INT, \ 478 495 ra DOUBLE, \ 479 496 dec_ DOUBLE, \
Note:
See TracChangeset
for help on using the changeset viewer.
