java.sql.SQLException:对象testproc,数据库mydatabase,所有者dbo上的EXECUTE权限被拒绝 - Sybase ASE

时间:2016-08-17 13:16:51

标签: java sybase-ase sqlexception

我正在使用Sybase ASE DB。

我喜欢这个:

<input type="text" value="asdf" />

如果我直接执行此proc,这可以正常工作。但是当我执行

  Create procedure testproc
As  
Begin   
  SELECT @line = 'drop table testtable'
        execute(@line)
end   

错误:

stmt= connection.prepareCall("{ call testproc }");
    stmt.execute();

使用Sybase IQ DB也可以正常工作。如何在ASE中执行相同的操作?

0 个答案:

没有答案