我正在使用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中执行相同的操作?