- 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/mysql.py
r37160 r37179 207 207 208 208 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 209 218 try: self.execute(sql) 210 219 except: return
Note:
See TracChangeset
for help on using the changeset viewer.
