呵~~,没有copy过了
是不是odbc问题?

解决方案 »

  1.   

    please restart the mysql
      

  2.   

    直接拷数据库是会出现这问题的,重新起动MYSQL就可以解决了
      

  3.   

    大哥大姐些
    我启动MYSQL几十次了 :( :(一直想搞清楚~~~    程序调用应该没有问题  因为之前一直在用,没有动过!我们怀疑是mysql的问题. 对mysql 还不是很熟悉!!
      

  4.   

    应该不是myslq的问题,你在命令行窗口给登录mysql吗?
    C:\cd myslq  (假定在C的根目录)
    cd bin
    mysql
    #能不能登录
    然后:
    show databases;
    然后
    use database
    然后查看数据
    这样看能不能行,如果这样可以就是你的phpmyadmin有问题,重新配置
      

  5.   

    <?
    include "etc/config.php";
    $mysql_link = mysql_connect($dbhost,$dbuser,$dbpswd);
    mysql_select_db($dbname,$mysql_link);
    $SQL="select Name,LastLoginTime from Admin_Radio  where Name='$username' and Password=md5('$password') and AdminSts='A' and RadioID=$radioid";$result=mysql_query($SQL) or die(mysql_error());
    if(mysql_num_rows($result)!=1) {
    include "error.php";应该就是这些吧! 但是程序原来运行没有问题的!@!
      

  6.   

    C:\httpd\MYSQL\bin>mysql
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 10 to server version: 3.23.57-ntType 'help;' or '\h' for help. Type '\c' to clear the buffer.mysql> use database
    ERROR 1044: Access denied for user: '@localhost' to database 'database'
    mysql>这个是在  命令行窗口运行的结果 !
      

  7.   

    你的mysql不允许匿名用户访问数据库database
    请给你的用户加个可以访问该数据库的权限
    如用户名为'test' 密码为'test';
    grant all privileges on database.* to test@localhost identified by 'test'
      

  8.   

    你的mysql不允许匿名用户访问数据库database
    请给你的用户加个可以访问该数据库的权限
    如用户名为'test' 密码为'test';
    grant all privileges on database.* to test@localhost identified by 'test'----------------------  不好意思 刚刚学用! 不太清楚怎么加? 在mysql里加么? 还是放到页面里去加!在mysql怎么加?
      

  9.   

    1、请检查原表的类型,只有MyISAM类型的表可以拷贝
    2、先用phpmyadmin查看拷贝后的表,以排除程序编写的错误
      

  10.   

    我用 phpmyadmin 查看过勒! 表没什么问题,数据都在!!
      

  11.   

    呵呵.
    曾经遇到过这样的错误~~
    由于回收站的东西太多,系统盘剩余空间不够了,mysql能启动,但是就是不能用.
    很有意思的错误!!!!!!!!1111
      

  12.   

    当然叫你用mysql管理员权限进去,加啊
      

  13.   

    mysql不能用的话,为什么用phpmyadmin又能查看呢?我觉得是程序的问题,因为错误提示是没有选择数据库