美文网首页
超时参数CommandTimeout与ConnectionTim

超时参数CommandTimeout与ConnectionTim

作者: BI罗 | 来源:发表于2021-02-02 14:50 被阅读0次
    let
        源 = Sql.Database("l\l1", "test", 
        [CommandTimeout=#duration(0,1,0,0),ConnectionTimeout=#duration(0,1,0,0)]),
        all= 源{[Schema="dbo",Item="One_M_TY"]}[Data],
        r=if (TopRow)>=0 then Table.FirstN(all,TopRow) else all
    in
        r
    
    let
    
    
         all = Sql.Database("l\l1", 
                "test", [Query="select * from [dbo].[Sheet1] "
                 //[Query="select "&TopRow&"* from [dbo].[Sheet1] "
                ,CommandTimeout=#duration(0,1,0,0)])
    in
        all
    

    =================================================

    vs直接设置

    相关文章

      网友评论

          本文标题:超时参数CommandTimeout与ConnectionTim

          本文链接:https://www.haomeiwen.com/subject/apjytltx.html