| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 606 人关注过本帖
标题:向数据库插入纪录出现错误,寻求帮助。
只看楼主 加入收藏
azalea
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2006-10-20
收藏
 问题点数:0 回复次数:1 
向数据库插入纪录出现错误,寻求帮助。

制作了一个留言本。使用的是DW,ASP和ACESS。

数据库连接方式为OLEDB。


数据库连接为"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\inetpub\wwwroot\fshsf\db\table.mdb"%>

点击提交留言后,出现错误如下:

错误类型:
Microsoft JET Database Engine (0x80040E14)
INSERT INTO 语句的语法错误。
/fshsf/gb/index.asp, 第 115 行


浏览器类型:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; GTJA-E.T.(QinDaHai))

网页:
POST 152 ??? /fshsf/gb/index.asp

POST Data:
topic=%C1%F4%D1%D4%CA%D4%D1%E9&name=%BE%C5%BE%C5&email=123456&textfield=2006-10-20&content=%B3%C9%B9%A6%B7%F1&Submit=++%CC%E1++%BD%BB++&MM_insert=gbform


我看过一些解决方法,都是说表里的字段名和ACESS中默认的系统名称相同,可是我这里并没有啊。

我使用的字段名有uname,topic,time,content,email

我查看了第115行的代码为MM_editCmd.Execute

另外附一些代码:

Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd

Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId

Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i

MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
MM_editAction = MM_editAction & "?" & Server.HTMLEncode(Request.QueryString)
End If

' boolean to abort record edit
MM_abortEdit = false

' query string to execute
MM_editQuery = ""
%>
<%
' *** Insert Record: set variables

If (CStr(Request("MM_insert")) = "gbform") Then

MM_editConnection = MM_conn_STRING
MM_editTable = "gb"
MM_editRedirectUrl = ""
MM_fieldsStr = "topic|value|name|value|email|value|date|value|content|value"
MM_columnsStr = "topic|',none,''|username|',none,''|email|',none,''|time|',none,NULL|content|',none,''"

' create the MM_fields and MM_columns arrays
MM_fields = Split(MM_fieldsStr, "|")
MM_columns = Split(MM_columnsStr, "|")

' set the form values
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
Next

' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If

End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it

Dim MM_tableValues
Dim MM_dbValues

If (CStr(Request("MM_insert")) <> "") Then

' create the sql insert statement
MM_tableValues = ""
MM_dbValues = ""
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_formVal = MM_fields(MM_i+1)
MM_typeArray = Split(MM_columns(MM_i+1),",")
MM_delim = MM_typeArray(0)
If (MM_delim = "none") Then MM_delim = ""
MM_altVal = MM_typeArray(1)
If (MM_altVal = "none") Then MM_altVal = ""
MM_emptyVal = MM_typeArray(2)
If (MM_emptyVal = "none") Then MM_emptyVal = ""
If (MM_formVal = "") Then
MM_formVal = MM_emptyVal
Else
If (MM_altVal <> "") Then
MM_formVal = MM_altVal
ElseIf (MM_delim = "'") Then ' escape quotes
MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
Else
MM_formVal = MM_delim + MM_formVal + MM_delim
End If
End If
If (MM_i <> LBound(MM_fields)) Then
MM_tableValues = MM_tableValues & ","
MM_dbValues = MM_dbValues & ","
End If
MM_tableValues = MM_tableValues & MM_columns(MM_i)
MM_dbValues = MM_dbValues & MM_formVal
Next
MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"

If (Not MM_abortEdit) Then
' execute the insert
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute————第115行,它所提示的出错行。
MM_editCmd.ActiveConnection.Close

If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If

End If
%>
<%
Dim rsgb
Dim rsgb_numRows

Set rsgb = Server.CreateObject("ADODB.Recordset")
rsgb.ActiveConnection = MM_conn_STRING
rsgb.Source = "SELECT * FROM gb ORDER BY ID DESC"
rsgb.CursorType = 0
rsgb.CursorLocation = 2
rsgb.LockType = 1
rsgb.Open()

rsgb_numRows = 0
%>

不知道贴上这些代码能不能找出问题,请各位指点一些。谢谢。

搜索更多相关主题的帖子: 数据库 Microsoft 浏览器 纪录 fshsf 
2006-10-20 22:16
azalea
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2006-10-20
收藏
得分:0 
不好意思,我又查阅了一些资料。问题解决了。
就是使用了保留字段。
麻烦斑竹把贴子删了叭。
不好意思啦……
2006-10-20 22:48
快速回复:向数据库插入纪录出现错误,寻求帮助。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.037864 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved