The installation of your dhtmlxSpreadsheet plugin results in the following SQL tables:
jos_data
jos_header
jos_sheet
jos_trigger
jos_user
In my example “jos” is the default table prefix defined by Joomla. The names of the tables, that are created by your plugin during the installation, have the potential to cause problems. Especially the last table, in my example “jos_user”, has a “unhandy” name. It could result in a conflict with other components or Joomla core parts.
Therefor I would recommend, that your plugin chooses unique table names, that have a prefix like e.g “dhx”, during the installation. In my example this would result in table names like:
jos_dhx_data
jos_dhx_header
jos_dhx_sheet
jos_dhx_triggers
jos_dhx_user
The chance, that other extensions or core components uses the same table name prefix is low. And the database handling is much easier.