mysql - WordPress WP-Dbmanager 0/1 Query(s) Executed Successfully -


wordpress 3.5.1
wp-dbmanager 2.63
database type mysql
database version v5.1.68-cll

trying create new table on database wordpress site using wp-dbmanager plugin.

i click on run sql query link in admin panel , paste in query is

create table mg_msl_lookup    (       device_id    int(11) not null auto_increment,       sku          varchar(30) not null,       manufacturer varchar(30) not null,       phone        varchar(50) not null,       esn          bigint(18) not null,       msl          int(6) not null    );  

i click run , error message

create table mg_msl_lookup
0/1 query(s) executed successfully

so did google search "wp-dbmanager 0/1 query(s) executed successfully" , found forum post on plugin developer's site. suggested put statement on 1 line, did:

create table mg_msl_lookup (device_id int(11) not null auto_increment, sku varchar(30) not null, manufacturer varchar(30) not null, phone varchar(50) not null, esn bigint(18) not null, msl int(6) not null); 

once again click run , error message:

create table mg_msl_lookup (device_id int(11) not null auto_increment, sku varchar(30) not null, manufacturer varchar(30) not null, phone varchar(50) not null, esn bigint(18) not null, msl int(6) not null);
0/1 query(s) executed successfully

i have site wide admin permissions, can drop/empty tables using plugin gui, reason can't create simple table. have 40 tables before , after run statement.

the plugin developer has these set of instructions on run query page

  1. create statement return error, normal due database class. confirm table has been created check manage database page.
  2. update statement may return error due newly updated value being same previous value.
  3. alter statement return error because there no value returned.

i'm gathering means in #1 when run create statement error (so perhaps 0/1 query(s) executed successfully normal?) followed directions , go manage database page new table not there.

does have experience wp-dbmanager assist ? getting rather frustrating.

i opted use phpmyadmin create tables instead of plugin, worked charm.


Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

asp.net - Razor Page Hosted on IIS 6 Fails Every Morning -

c++ - wxwidget compiling on windows command prompt -