Salome HOME
[bos #40653][CEA] New mesh import export formats with meshio.
[modules/smesh.git] / src / Tools / Verima / Base / tableGroupes.py
index 9f0cca91860e2ca8d6a4d3557146a2f5558a72d0..26d0b62761cb343fb9a401f6982a73e1e8484f76 100644 (file)
@@ -1,5 +1,24 @@
-from PyQt4 import QtSql, QtCore
-from tableDeBase import TableDeBase
+# Copyright (C) 2013-2024  EDF
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
+from qtsalome import QSqlQuery
+from Base.tableDeBase import TableDeBase
 
 class TableGroupes (TableDeBase):
       def __init__(self):
@@ -9,7 +28,7 @@ class TableGroupes (TableDeBase):
 
 
       def createSqlTable(self):
-          query=QtSql.QSqlQuery()
+          query=QSqlQuery()
 
 
           texteQuery ="create table Groupes( nomGroupe varchar(40),idMaillage int, idVersion int,"
@@ -18,12 +37,12 @@ class TableGroupes (TableDeBase):
           texteQuery+="foreign key (idVersion) references Versions(id)," 
           texteQuery+="primary key (nomGroupe,idMaillage,idVersion,Entite));"
 
-          print "Creation de TableGroupes : ", query.exec_(texteQuery)
+          print("Creation de TableGroupes : ", query.exec_(texteQuery))
 
 
       def getVal(self,nomGroupe,idMaillage,idVersion,typeMaille):
           val=0                          # Valeur si l enregistrement n existe pas
-          query=QtSql.QSqlQuery()
+          query=QSqlQuery()
           texteQuery ='select NbEntite from Groupes  where nomGroupe ="' + nomGroupe +'"'
           texteQuery +=' and idMaillage=' + str(idMaillage)
           texteQuery +=' and idVersion = ' + str(idVersion)
@@ -32,12 +51,12 @@ class TableGroupes (TableDeBase):
           while (query.next()) :
               val=query.value(0).toInt()[0]
           while (query.next()) :
-              print "plusieurs enregistrements dans groupe pour ", nomGroupe," ",str(idMaillage)," ",str(idVersion),"\n"
+              print("plusieurs enregistrements dans groupe pour ", nomGroupe," ",str(idMaillage)," ",str(idVersion),"\n")
           return val
 
 
       def getAllEntity(self):
-            query=QtSql.QSqlQuery()
+            query=QSqlQuery()
             texteQuery ="select distinct Entite from Groupes;"
             query.exec_(texteQuery)
             maListe=[]