- Timestamp:
- Aug 12, 2014, 3:38:38 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20140717/ippToPsps/jython/mysql.py
r37179 r37241 83 83 ''' 84 84 def lockTable(self, table): 85 print "Locking table: " + table85 # print "Locking table: " + table 86 86 self.execute("LOCK TABLES " + table + " WRITE") 87 87 … … 90 90 ''' 91 91 def unlockTables(self): 92 print "Unlocking tables"92 # print "Unlocking tables" 93 93 self.execute("UNLOCK TABLES") 94 94 … … 117 117 while (rs.next()): 118 118 tableName = rs.getString(1) 119 print "table: " + tableName119 # print "table: " + tableName 120 120 rs.close() 121 121
Note:
See TracChangeset
for help on using the changeset viewer.
