MYSQL编译时出现的问题 
you tried to execute an empty string.please type an sql command into the sql edit field and ececute again create database if not exists `netfile`; USE `netfile`; 
DROP TABLE IF EXISTS `admin`; CREATE TABLE `admin` ( 
  `ID` bigint(20) unsigned NOT NULL auto_increment, 
  `ZH` varchar(20) NOT NULL, 
  `PASSWORD` varchar(15) NOT NULL, 
  PRIMARY KEY  (`ID`) 
) ENGINE=InnoDB DEFAULT CHARSET=latin1; 哪有错么 

解决方案 »

  1.   

    you tried to execute an empty string.please type an sql command into the sql edit field and ececute again 
      

  2.   

    我知道哪错了 直接建表可以的
    create database if not exists `netfile`;  USE `netfile`;  
    DROP TABLE IF EXISTS `admin`;  应该是这部分错了中间是不是有哪里格式不对?
      

  3.   

    一句一句执行,看出问题的是哪句。[align=center]====  ====
    [/align]
      

  4.   

    create database if not exists `netfile`;
    USE `netfile`;
    DROP TABLE IF EXISTS `admin`;
    CREATE TABLE `admin` (
      `ID` bigint(20) unsigned NOT NULL auto_increment,
      `ZH` varchar(20) NOT NULL,
      `PASSWORD` varchar(15) NOT NULL,
      PRIMARY KEY  (`ID`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    ================================================在我这里执行没有出错,请重新检查。
      

  5.   

    提示很明显了。你的客户端工具不支持批量执行SQL语句!!!!