如何查看数据库中表的内容,装上了MySQL-Front和Navicat for MySQL点击查看表时,出现以下错误:ERROR 1033: Incorrect information in file: ''./sstory/qsex.frm''.是那里有设置吗

解决方案 »

  1.   

    表有问题?在MYSQL命令行下是否有问题?
      

  2.   

    check table qsex;
    repair table qsex;看看
      

  3.   

    你先在MySQL-Front或Navicat for MySQL上执行
    check table qsex;
    repair table qsex;然后再去访问表看是否好了
      

  4.   

    从你的client进入
    C:\Documents and Settings\Administrator>mysql -u root -p
    Enter password: *******
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 6
    Server version: 5.1.36-community-log MySQL Community Server (GPL)Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>
    或者在client用
    shell>myisamchk -r -q /path/*.MYI
      

  5.   

    repair table qsex;修复一下你的表然后再试试看