进行过程时MS SQL Server错误

问题描述

我只是想得到一个显示以字母Up开头的名称的过程(我正在尝试使ASP.NET的Auto完整)

Intent intent = new Intent(this,A.class);

intent.setFlags( Intent.FLAG_ACTIVITY_CLEAR_TOP |  Intent.FLAG_ACTIVITY_NEW_TASK );

startActivity(intent);

但是此错误不断弹出:

select * from Diagnose

Create proc spGetNames 'Up'
@term nvarchar (50)
as
Begin
    Select Name
    from Diagnose
    where Name like @term + '%'
End

在youtube上,人们所做的与我相同,并且对他们有用:

enter image description here

任何技巧都很棒:)

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)