小编Evg*_*175的帖子

NuGet:AForge.Video.FFMPEG在哪里

美好的一天。我想AForge.Video.FFMPEG在我的项目中使用。因此,我尝试在NuGet上找到它。但我在这里找不到。

因此,这里存在:https : //code.google.com/archive/p/aforge/downloads

但是,如果我想从nuget中自动还原它(在git clone和重建之后),在这种情况下是不允许的吗?仅将此dll存储在项目中并始终推送/获取?

c# git ffmpeg aforge

5
推荐指数
1
解决办法
4866
查看次数

Oracle DB:如何将函数结果存储到变量内部程序中

美好的一天.我有一个功能:

create function get_n(search tt.pp%type)
  return number
  is rc number;
begin
  select count(*)
  into rc
  from tt
  where tt.pp=search;

  return (rc);
end;
/
Run Code Online (Sandbox Code Playgroud)

我可以得到结果

variable qwe number;

begin
  select get_n('sample')
    into :qwe
    from dual;
end;

print qwe;
Run Code Online (Sandbox Code Playgroud)

所以,它成功运作.但是部分:我print执行其他时不能执行(PLS-00103:遇到符号"PRINT"......).这真的很奇怪.

我尝试从匿名块中的函数获取结果并打印它:

declare
  qwe number;
begin
  select get_n('sample')
    into :qwe
    from dual;
  dbms_output.put_line(qwe);
exception
  when others
    then dbms_output.put_line(sqlerrm);
end;
/
Run Code Online (Sandbox Code Playgroud)

它不打印任何东西.为什么?

oracle plsql

2
推荐指数
1
解决办法
2605
查看次数

标签 统计

aforge ×1

c# ×1

ffmpeg ×1

git ×1

oracle ×1

plsql ×1