SMBLibrary:“尝试以其访问权限禁止的方式访问套接字”

时间:2019-07-27 06:10:00

标签: c# sockets tcp smb

SMBLibrary project on GitHub似乎正是我想要的。 我需要一些东西来抽象数据库,使其看起来像文件系统,可以通过UNC路径进行访问。

我使用Windows 10,Visual Studio作为管理员。我安装了MS Loopback适配器,并禁用了其他适配器。我已经停止了“服务器”服务。

在127.0.0.1的端口445上运行服务器,我收到以下错误:

SQL> with
  2  test (col1, col2) as
  3    -- sample data
  4    (select 1, 10 from dual union all
  5     select 1, 10 from dual union all
  6     select 2, 20 from dual union all
  7     select 3, 30 from dual union all
  8     select 3, 30 from dual
  9    ),
 10  uni as
 11    -- unique values
 12    (select col1, col2
 13     from test
 14     group by col1, col2
 15     having count(*) = 1
 16    ),
 17  dup as
 18    -- duplicate values
 19    (select col1, col2
 20     from test
 21     group by col1, col2
 22     having count(*) > 1
 23    )
 24  -- the final result
 25  select u.col1 ucol1,
 26         u.col2 ucol2,
 27         d.col1 dcol1,
 28         d.col2 dcol2
 29  from uni u full outer join dup d on u.col1 = d.col1;

     UCOL1      UCOL2      DCOL1      DCOL2
---------- ---------- ---------- ----------
                               1         10
                               3         30
         2         20

SQL>

我希望运行服务器应用程序,然后使用资源管理器导航到\ 127.0.0.1

从Read.me尚不清楚这是否正确。

0 个答案:

没有答案