lizhonggeng吧 关注:21贴子:2,460
  • 5回复贴,共1

Microsoft OLE DB Provider for SQL Server (0x80040E14)

只看楼主收藏回复

错误类型:
Microsoft OLE DB Provider for SQL Server (0x80040E14)
未能找到存储过程 'R_Head'。
/0/Inc/Head_Inc.asp, 第 11 行


浏览器类型:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) 

网页:
GET /0/index.asp 

时间:
2006年2月6日, 11:57:37 


详细信息:
Microsoft 支持 



1楼2006-03-06 12:08回复
    Head_Inc.asp的第11行代码似乎出现了问题,需要index.asp和Head_Inc.asp的具体代码分析,你有空发上来,我晚上帮你分析一


    IP属地:山东2楼2006-03-06 12:34
    回复
      文件大长了不让发,


      3楼2006-03-06 12:39
      回复
        • 222.137.80.*
        Microsoft OLE DB Provider for SQL Server (0x80004005)
        [DBNETLIB][ConnectionOpen (Connect()).]SQL Server 不存在或拒绝访问。怎么办啊


        4楼2007-10-28 14:07
        回复
          • 59.50.148.*
          求求我吧..我的也是这样..


          5楼2008-04-04 19:01
          回复
            错误类型:
            Microsoft OLE DB Provider for SQL Server (0x80040E14)
            第 1 行: '=' 附近有语法错误。
            /exam/inc/function.asp, 第 206 行
            function score(intPrjID,intStudentID)
            dim dtmStartTime,dtmEndTime,intMark,intLimitTime
            '首先判断此试卷能否进行打分处理
            if G_CONN.execute("select count(*) as reccount from prj_student where state<>1 and "_
            & "prjid=" & intPrjID & " and studentid=" & intStudentID) ("reccount") = 0 then(错误在此处)
             score = false
            else
             '取得此考试的限制时间及进行考试的开始时间并计算出考试的结束时间
             intLimitTime = G_CONN.execute("select limittime from project where prjid=" _
            & intPrjID)("limittime")
             dtmStartTime = G_CONN.execute("select starttime from prj_student where prjid=" _
            & intPrjID & " and studentid=" & intStudentID)("starttime")
             if DateDiff("n",dtmStartTime,Now()) > intLimitTime then
             dtmEndTime = FormatDatetime(dtmStartTime,2) & " " _
            & FormatDatetime(TimeSerial(Hour(dtmStartTime),Minute(dtmStartTime) _
            + intLimitTime,Second(dtmStartTime)),3)
             else
            dtmEndTime = Now()
             end if
            '计算出考试试卷的得分
             intMark = G_CONN.execute("select count(*) as recmark from prj_process P_P,subject "_
            & "S where P_P.answer=S.answer and P_P.prjid=" & intPrjID & " and P_P.studentid=" _
            & intStudentID & " and P_P.subid=S.id and (S.type=1 or S.type=3)")("recmark")
             intMark = intMark + G_CONN.execute("select count(*)*2 as recmark from prj_process"_
            & " P_P,subject S where P_P.answer=S.answer and P_P.prjid=" & intPrjID _
            & " and P_P.studentid=" & intStudentID & " and P_P.subid=S.id and S.type=2")("recmark")
            '将得分填入考试计划考生表(prj_student)并修改考试状态为已考
             G_CONN.execute "update prj_student set state=1,endtime=#" & dtmEndTime _
            & "#,mark=" & intMark & " where prjid=" & intPrjID & " and studentid=" & intStudentID
             score = true
            end if
            end function
            %>


            6楼2008-06-01 23:54
            回复