98 |
98 |
99 def getData(self): |
99 def getData(self): |
100 """ |
100 """ |
101 Public method to retrieve the connection data. |
101 Public method to retrieve the connection data. |
102 |
102 |
103 @return tuple giving the driver name (QString), the database name (QString), |
103 @return tuple giving the driver name (string), the database name (string), |
104 the user name (QString), the password (QString), the host name (QString) |
104 the user name (string), the password (string), the host name (string) |
105 and the port (integer) |
105 and the port (integer) |
106 """ |
106 """ |
107 return ( |
107 return ( |
108 self.driverCombo.currentText(), |
108 self.driverCombo.currentText(), |
109 self.databaseEdit.text(), |
109 self.databaseEdit.text(), |