|
@@ -111,14 +111,14 @@ class EmField(EmComponent):
|
111
|
111
|
#
|
112
|
112
|
# @return Name of the table
|
113
|
113
|
def get_class_table(self):
|
114
|
|
- return self._get_class_tableDb()
|
|
114
|
+ return self._get_class_table_db()
|
115
|
115
|
|
116
|
116
|
## _get_class_tableDb (Function)
|
117
|
117
|
#
|
118
|
118
|
# Executes a request to the database to get the name of the table in which to add the field
|
119
|
119
|
#
|
120
|
120
|
# @return Name of the table
|
121
|
|
- def _get_class_tableDb(self):
|
|
121
|
+ def _get_class_table_db(self):
|
122
|
122
|
dbe = self.getDbE()
|
123
|
123
|
conn = dbe.connect()
|
124
|
124
|
fieldtable = sql.Table(EmField.table, sqlutils.meta(dbe))
|