我也碰到过这个问题。我那个表才几行,它也报这个错。可恶!
我本以为MYSQL推荐的东东会好用一点,没想到。哎!
改回mysql-front了。
推荐大家也用这个,巨好用!

解决方案 »

  1.   

    看来发现这个错误的人不只我自己,为什么这么大的bug它们都没有测试出来。
      

  2.   

    因为MYSQL 表中存入了与结构违背的数据记录! 比如 int(10) 应该为 int(4),
    或 
        表结构: test          id   int(4)
              name vchar(100) 
        
        尝试操作SQL:  
           
              mysql>  insert into test(id,name) values('1','String');
              上一句虽然合法,但此时操作MYSQL CC 9。0 产生提出的错误!           [解决方法]
                    (1). 合理的定义数据类型.
                    (2). 严格的按照定义的数据类型,插入数据。     本人已经调式通过!
      

  3.   

    Edit your server and in the "MySQL Options" tab, set a reasonable value
    for "Automatically limit SELECT queries to" and set the value for "MaximumJoin Size" to 1000000.  That should fix these problems."
      

  4.   

    to dylanwolf() :
      but where to find out the "MySQL Options"???
      

  5.   

    Select your server, right click --> edit --> Mysql Options