Hi,
I just test on a fresh install
only data, views, schema, Webform, Webform View installed
I create a webform.
go to msql views admin select the webform
Ok,
then i remove it, just unselect and press submit, here is the error message :
DOException: SQLSTATE[42S02]: Base table or view not found: 1051 Unknown table 'bilan2__views_webform1_1': DROP VIEW {_views_webform1_1}; Array ( ) in webform_mysql_views_admin_form_submit() (line 268 of webform_mysql_views/webform_mysql_views.module)
Comments
Comment #1
ns commentedexperiencing the same issue -- and I can't uninstall the module either.
Comment #2
loopy1492 commentedI think 11990400 and 1825066 are related.
I had the issue detailed here:
http://drupal.org/node/1990400
I tried to uninstall the module and this is the error I got:
PDOException: SQLSTATE[42000]: Syntax error or access violation: 1103 Incorrect table name 'webform_views_eo_38_application_for_waiver_from_executive_compensation_and_administrative_expenses_l': DROP VIEW {webform_views_eo_38_application_for_waiver_from_executive_compensation_and_administrative_expenses_limitations_9}; Array ( ) in webform_mysql_views_uninstall() (line 15 of REDACTED/web/content/sites/all/modules/webform_mysql_views/webform_mysql_views.install).
The module thinks that a view exists when it doesn't. I tried just creating a dummy view of each just to give it something to delete, but that didn't work.
Comment #3
loopy1492 commentedProbably related to this issue regarding long names for the form and fields in the form:
http://drupal.org/node/1571040
Comment #4
joecorall commentedI believe this is a duplicate of #1770810: Long node names for webform cause view creation error
Never the less, I changed the DROP VIEW calls in the module to DROP VIEW IF EXISTS to ensure these errors will not arise.