IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 4, 2014, 4:27:44 PM (12 years ago)
Author:
eugene
Message:

add tessID, projectionID, skycellID; cleanup StackMeta fields

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140717/ippToPsps/jython/mysql.py

    r37160 r37179  
    207207
    208208        sql = "ALTER TABLE " + table + " DROP " + column
     209        try: self.execute(sql)
     210        except: return
     211
     212    '''
     213    Add a column to the table
     214    '''
     215    def addColumn(self, table, column, type):
     216
     217        sql = "ALTER TABLE " + table + " ADD COLUMN " + column + " " + type
    209218        try: self.execute(sql)
    210219        except: return
Note: See TracChangeset for help on using the changeset viewer.