Changeset 61185 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 25, 2016 3:06:08 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/db.py
r56808 r61185 154 154 oRet = oRet.decode('utf-8'); 155 155 return oRet; 156 157 def copyExpert(self, sSqlCopyStmt, oFile, cbBuf = 8192): 158 """ See TMDatabaseConnection.copyExpert()""" 159 return self._oCursor.copy_expert(sSqlCopyStmt, oFile, cbBuf); 156 160 157 161 @staticmethod … … 482 486 return oRet; 483 487 488 def copyExpert(self, sSqlCopyStmt, oFile, cbBuf = 8192): 489 """ Wrapper around Psycopg2.cursor.copy_expert. """ 490 return self._oCursor.copy_expert(sSqlCopyStmt, oFile, cbBuf); 491 484 492 def getCurrentTimestamps(self): 485 493 """
Note:
See TracChangeset
for help on using the changeset viewer.