我们有一个应用程序,它有一些以下面的方式编写的存储过程。我尝试使用谷歌搜索,但无法找到它所写的语言。
声明@ tbl__Paginate_exZVPE5724表(i__SeqNo整数标识(1,1),p1 int)
__设置:
set nocount on
set @i__rc = 0
set @i__Obj_AccessAllow = 0
set @i__pagex_FromRow = 0
set @i__pagex_ToRow = 0
set @i__pagex_PageSize = 0
__ main_body:
-- Set username for CFR
EXECUTE USP_Core_CFR_SetUserName @vc__usr__name_CFR
/* define macro for users in audience */
/* define the fields */
/* sequence of columns matter for desc being ntext. */
/* define the PK SQL */
/* define the where SQL
非常感谢任何有关理解上述代码的帮助(__ setup:,__ main_body :)。使用setup和mainbody的示例将有助于更好地理解
答案 0 :(得分:0)
是的,它是tsql,但有一种奇怪的方式来声明东西......
__ setup只是将变量设置为某些默认值,可以使用
完成@DECLARE @i__rc INT = 0以及
和
__ main_body正在执行名为
的storedprocedureUSP_Core_CFR_SetUserName 和变量 @vc__usr__name_CFR