权限的问题
connect user1/ps1 (user1为拥有tablename表的用户)
grant select on tablename to user2 (user2为程序中连接数据库使用的用户)
commit;

解决方案 »

  1.   

    grant connect,resource,select any table to your_user;
      

  2.   

    应该不是权限的问题,其他的使用Ado的测试驱动都是可以的,而且在这里是对任何一个表操作,都会存在这样的提示,谢谢两位的参与!
      

  3.   

    你的用户有足够权限吗?
     如果没有就授权给你的用户把。
      grant connect,resource,select any table to 《用户名》;
    在试下
      

  4.   

    试试这两个方法:
    表名前面加上用户名   user.tablename
    表名加上双引号