mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-04 22:34:20 +05:00
Fixes for the import/export methods of the Verima plugin in SMESH.
This commit is contained in:
parent
796ebe86e4
commit
1667ba5bf5
@ -24,6 +24,7 @@ if __name__ == "__main__":
|
||||
exit()
|
||||
|
||||
maBase=Base(options.database)
|
||||
maBase.create()
|
||||
maBase.initialise()
|
||||
maBase.importFromCSV(folder,options.partiel,options.force)
|
||||
maBase.close()
|
||||
|
@ -4,8 +4,8 @@ from tableDeBase import TableDeBase
|
||||
class TablePerfs (TableDeBase):
|
||||
def __init__(self):
|
||||
TableDeBase.__init__(self,"Perfs")
|
||||
self.setField(('Maillage','Version','NbSecCpu','Memoire'))
|
||||
self.setTypeField(('int','int','int','int'),('idMaillage','idVersion','Machine'))
|
||||
self.setField(('Maillage','Version','Machine','NbSecCpu','Memoire'))
|
||||
self.setTypeField(('int','int','str','int','int'),('idMaillage','idVersion','Machine'))
|
||||
|
||||
def createSqlTable(self):
|
||||
query=QtSql.QSqlQuery()
|
||||
|
Loading…
Reference in New Issue
Block a user